From bc3e002fe902f1c1aa884aa8bbbc559ccfb2ea7c Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Fri, 23 Feb 2024 10:40:58 +0800 Subject: [PATCH] Fix to support struct field default value. --- grammar.js | 1 + src/grammar.json | 25 + src/node-types.json | 10 + src/parser.c | 54215 ++++++++++++++++++++------------------- test/corpus/struct.txt | 62 + 5 files changed, 27379 insertions(+), 26934 deletions(-) create mode 100644 test/corpus/struct.txt diff --git a/grammar.js b/grammar.js index 9c56db7..5a9fb55 100644 --- a/grammar.js +++ b/grammar.js @@ -272,6 +272,7 @@ module.exports = grammar({ field("name", $._field_identifier), ":", field("type", $._option_type), + optional(seq("=", field("value", $._expression))), ), ordered_field_declaration_list: ($) => diff --git a/src/grammar.json b/src/grammar.json index 99e1a0c..e3c6bf9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -988,6 +988,31 @@ "type": "SYMBOL", "name": "_option_type" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, diff --git a/src/node-types.json b/src/node-types.json index 8e70dfb..ff2f04a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1450,6 +1450,16 @@ "named": true } ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] } }, "children": { diff --git a/src/parser.c b/src/parser.c index 806b014..1fc240d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1494 -#define LARGE_STATE_COUNT 294 +#define STATE_COUNT 1498 +#define LARGE_STATE_COUNT 296 #define SYMBOL_COUNT 278 #define ALIAS_COUNT 5 #define TOKEN_COUNT 129 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 137 +#define PRODUCTION_ID_COUNT 139 enum { sym_identifier = 1, @@ -2194,14 +2194,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [126] = {.index = 211, .length = 5}, [127] = {.index = 216, .length = 3}, [128] = {.index = 219, .length = 3}, - [129] = {.index = 222, .length = 4}, - [130] = {.index = 226, .length = 5}, - [131] = {.index = 231, .length = 4}, - [132] = {.index = 235, .length = 2}, - [133] = {.index = 237, .length = 1}, - [134] = {.index = 238, .length = 5}, - [135] = {.index = 243, .length = 2}, - [136] = {.index = 245, .length = 3}, + [129] = {.index = 222, .length = 3}, + [130] = {.index = 225, .length = 4}, + [131] = {.index = 229, .length = 5}, + [132] = {.index = 234, .length = 4}, + [133] = {.index = 238, .length = 2}, + [134] = {.index = 240, .length = 1}, + [135] = {.index = 171, .length = 3}, + [136] = {.index = 241, .length = 5}, + [137] = {.index = 246, .length = 2}, + [138] = {.index = 248, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2519,40 +2521,44 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pattern, 3}, {field_value, 5}, [219] = + {field_name, 0}, + {field_type, 2}, + {field_value, 4}, + [222] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [222] = + [225] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [226] = + [229] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [231] = + [234] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [235] = + [238] = {field_type, 2}, {field_type, 3, .inherited = true}, - [237] = + [240] = {field_type, 3}, - [238] = + [241] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [243] = + [246] = {field_type, 3}, {field_type, 4, .inherited = true}, - [245] = + [248] = {field_body, 9}, {field_pattern, 3}, {field_value, 7}, @@ -2683,6 +2689,12 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [119] = { [1] = alias_sym_field_identifier, }, + [128] = { + [0] = alias_sym_field_identifier, + }, + [135] = { + [1] = alias_sym_field_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2700,22 +2712,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, + [4] = 4, [5] = 5, [6] = 6, - [7] = 6, - [8] = 3, - [9] = 9, - [10] = 5, - [11] = 9, - [12] = 12, - [13] = 5, - [14] = 6, - [15] = 9, - [16] = 9, - [17] = 5, - [18] = 6, - [19] = 3, + [7] = 5, + [8] = 8, + [9] = 5, + [10] = 8, + [11] = 6, + [12] = 5, + [13] = 3, + [14] = 3, + [15] = 8, + [16] = 6, + [17] = 6, + [18] = 3, + [19] = 8, [20] = 20, [21] = 21, [22] = 22, @@ -2724,65 +2736,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [25] = 25, [26] = 20, [27] = 20, - [28] = 22, + [28] = 25, [29] = 23, - [30] = 23, + [30] = 22, [31] = 21, - [32] = 21, + [32] = 25, [33] = 23, [34] = 22, - [35] = 25, + [35] = 21, [36] = 23, - [37] = 25, + [37] = 23, [38] = 38, [39] = 39, [40] = 40, [41] = 41, [42] = 42, - [43] = 40, - [44] = 44, - [45] = 42, - [46] = 46, + [43] = 43, + [44] = 43, + [45] = 45, + [46] = 41, [47] = 47, - [48] = 47, + [48] = 40, [49] = 49, [50] = 50, [51] = 51, [52] = 52, [53] = 53, [54] = 54, - [55] = 54, + [55] = 55, [56] = 56, - [57] = 54, + [57] = 55, [58] = 58, - [59] = 59, + [59] = 53, [60] = 60, [61] = 61, - [62] = 62, - [63] = 53, - [64] = 64, - [65] = 61, - [66] = 66, - [67] = 61, - [68] = 66, - [69] = 69, - [70] = 70, + [62] = 55, + [63] = 63, + [64] = 55, + [65] = 58, + [66] = 58, + [67] = 67, + [68] = 68, + [69] = 53, + [70] = 61, [71] = 60, - [72] = 66, - [73] = 61, + [72] = 53, + [73] = 73, [74] = 74, [75] = 75, - [76] = 66, - [77] = 54, + [76] = 58, + [77] = 77, [78] = 78, [79] = 79, - [80] = 80, + [80] = 78, [81] = 81, - [82] = 81, - [83] = 78, + [82] = 82, + [83] = 83, [84] = 84, [85] = 85, - [86] = 86, + [86] = 84, [87] = 87, [88] = 88, [89] = 89, @@ -2794,79 +2806,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 98, - [99] = 99, + [98] = 89, + [99] = 90, [100] = 100, [101] = 101, [102] = 102, - [103] = 87, - [104] = 104, - [105] = 89, + [103] = 103, + [104] = 97, + [105] = 105, [106] = 106, - [107] = 101, - [108] = 93, - [109] = 109, - [110] = 110, - [111] = 95, - [112] = 96, - [113] = 97, - [114] = 104, - [115] = 104, - [116] = 97, - [117] = 117, - [118] = 96, - [119] = 117, - [120] = 95, - [121] = 93, - [122] = 89, + [107] = 105, + [108] = 108, + [109] = 92, + [110] = 100, + [111] = 111, + [112] = 112, + [113] = 101, + [114] = 114, + [115] = 88, + [116] = 102, + [117] = 106, + [118] = 93, + [119] = 119, + [120] = 94, + [121] = 95, + [122] = 122, [123] = 123, [124] = 124, - [125] = 88, + [125] = 125, [126] = 126, - [127] = 109, - [128] = 87, + [127] = 126, + [128] = 128, [129] = 129, - [130] = 101, - [131] = 131, - [132] = 100, - [133] = 133, - [134] = 110, - [135] = 99, - [136] = 98, + [130] = 96, + [131] = 105, + [132] = 132, + [133] = 92, + [134] = 93, + [135] = 94, + [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 100, - [141] = 99, - [142] = 142, - [143] = 133, - [144] = 98, - [145] = 126, - [146] = 106, + [140] = 125, + [141] = 141, + [142] = 102, + [143] = 101, + [144] = 144, + [145] = 100, + [146] = 144, [147] = 147, - [148] = 148, + [148] = 103, [149] = 149, - [150] = 117, + [150] = 147, [151] = 151, [152] = 152, - [153] = 94, - [154] = 124, - [155] = 155, - [156] = 142, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 158, - [162] = 162, - [163] = 155, - [164] = 110, - [165] = 162, - [166] = 90, - [167] = 160, - [168] = 151, - [169] = 169, - [170] = 170, + [153] = 139, + [154] = 138, + [155] = 95, + [156] = 156, + [157] = 152, + [158] = 108, + [159] = 126, + [160] = 90, + [161] = 128, + [162] = 123, + [163] = 163, + [164] = 89, + [165] = 165, + [166] = 97, + [167] = 132, + [168] = 168, + [169] = 91, + [170] = 96, [171] = 171, [172] = 172, [173] = 173, @@ -2916,21 +2928,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [217] = 217, [218] = 218, [219] = 219, - [220] = 169, + [220] = 220, [221] = 221, - [222] = 173, + [222] = 222, [223] = 223, - [224] = 174, + [224] = 224, [225] = 225, [226] = 226, [227] = 227, - [228] = 172, - [229] = 229, - [230] = 230, - [231] = 231, + [228] = 228, + [229] = 173, + [230] = 176, + [231] = 172, [232] = 232, - [233] = 233, - [234] = 234, + [233] = 174, + [234] = 171, [235] = 235, [236] = 236, [237] = 237, @@ -2954,7 +2966,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [255] = 255, [256] = 256, [257] = 257, - [258] = 171, + [258] = 258, [259] = 259, [260] = 260, [261] = 261, @@ -2990,48 +3002,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 291, [292] = 292, [293] = 293, - [294] = 172, - [295] = 171, - [296] = 169, - [297] = 173, - [298] = 174, - [299] = 299, - [300] = 170, + [294] = 294, + [295] = 295, + [296] = 173, + [297] = 171, + [298] = 172, + [299] = 176, + [300] = 174, [301] = 175, [302] = 302, [303] = 303, - [304] = 302, + [304] = 177, [305] = 305, - [306] = 178, - [307] = 184, - [308] = 191, - [309] = 309, - [310] = 180, + [306] = 306, + [307] = 306, + [308] = 184, + [309] = 194, + [310] = 191, [311] = 311, - [312] = 182, - [313] = 309, - [314] = 183, - [315] = 315, - [316] = 179, - [317] = 177, - [318] = 318, - [319] = 190, - [320] = 318, - [321] = 176, - [322] = 188, - [323] = 192, - [324] = 186, - [325] = 315, - [326] = 181, - [327] = 185, - [328] = 328, - [329] = 329, + [312] = 312, + [313] = 182, + [314] = 314, + [315] = 188, + [316] = 189, + [317] = 179, + [318] = 311, + [319] = 314, + [320] = 195, + [321] = 321, + [322] = 190, + [323] = 187, + [324] = 192, + [325] = 321, + [326] = 183, + [327] = 181, + [328] = 193, + [329] = 178, [330] = 330, [331] = 331, - [332] = 329, + [332] = 332, [333] = 333, [334] = 334, - [335] = 335, + [335] = 334, [336] = 336, [337] = 337, [338] = 338, @@ -3043,26 +3055,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [344] = 344, [345] = 345, [346] = 346, - [347] = 342, + [347] = 347, [348] = 348, - [349] = 349, - [350] = 349, - [351] = 343, - [352] = 193, - [353] = 353, + [349] = 345, + [350] = 346, + [351] = 351, + [352] = 352, + [353] = 351, [354] = 354, - [355] = 355, + [355] = 186, [356] = 356, [357] = 357, - [358] = 275, + [358] = 358, [359] = 359, - [360] = 360, - [361] = 359, - [362] = 360, + [360] = 264, + [361] = 361, + [362] = 361, [363] = 363, - [364] = 364, - [365] = 363, - [366] = 366, + [364] = 363, + [365] = 365, + [366] = 365, [367] = 367, [368] = 368, [369] = 369, @@ -3079,44 +3091,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [380] = 380, [381] = 381, [382] = 382, - [383] = 194, + [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 387, + [387] = 205, [388] = 197, - [389] = 389, + [389] = 199, [390] = 390, [391] = 391, [392] = 392, [393] = 393, [394] = 394, - [395] = 395, + [395] = 202, [396] = 396, - [397] = 195, + [397] = 397, [398] = 398, - [399] = 399, + [399] = 201, [400] = 400, [401] = 401, [402] = 402, [403] = 403, [404] = 404, - [405] = 200, - [406] = 203, + [405] = 405, + [406] = 406, [407] = 407, - [408] = 198, + [408] = 408, [409] = 409, [410] = 410, [411] = 411, [412] = 412, [413] = 413, [414] = 414, - [415] = 410, - [416] = 416, - [417] = 196, - [418] = 418, + [415] = 415, + [416] = 396, + [417] = 417, + [418] = 200, [419] = 419, - [420] = 420, + [420] = 196, [421] = 421, [422] = 422, [423] = 423, @@ -3173,7 +3185,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [474] = 474, [475] = 475, [476] = 476, - [477] = 477, + [477] = 372, [478] = 478, [479] = 479, [480] = 480, @@ -3188,380 +3200,380 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 368, + [492] = 492, [493] = 493, - [494] = 193, - [495] = 416, - [496] = 496, - [497] = 435, + [494] = 494, + [495] = 495, + [496] = 186, + [497] = 417, [498] = 498, [499] = 499, [500] = 500, - [501] = 461, + [501] = 500, [502] = 502, - [503] = 468, - [504] = 450, - [505] = 505, - [506] = 496, - [507] = 396, - [508] = 457, - [509] = 505, - [510] = 472, - [511] = 511, - [512] = 479, - [513] = 489, - [514] = 486, - [515] = 481, - [516] = 476, - [517] = 478, - [518] = 488, - [519] = 519, - [520] = 520, - [521] = 467, - [522] = 522, - [523] = 480, - [524] = 474, - [525] = 485, - [526] = 477, - [527] = 491, - [528] = 528, - [529] = 529, - [530] = 482, + [503] = 447, + [504] = 455, + [505] = 452, + [506] = 434, + [507] = 499, + [508] = 470, + [509] = 509, + [510] = 510, + [511] = 392, + [512] = 512, + [513] = 485, + [514] = 514, + [515] = 484, + [516] = 516, + [517] = 517, + [518] = 482, + [519] = 476, + [520] = 486, + [521] = 494, + [522] = 479, + [523] = 523, + [524] = 478, + [525] = 492, + [526] = 491, + [527] = 481, + [528] = 490, + [529] = 487, + [530] = 493, [531] = 531, - [532] = 487, - [533] = 484, - [534] = 483, - [535] = 490, - [536] = 475, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, + [532] = 471, + [533] = 533, + [534] = 488, + [535] = 489, + [536] = 480, + [537] = 469, + [538] = 483, + [539] = 493, + [540] = 476, [541] = 541, [542] = 542, - [543] = 543, - [544] = 544, - [545] = 479, + [543] = 484, + [544] = 485, + [545] = 486, [546] = 546, - [547] = 486, + [547] = 547, [548] = 548, [549] = 549, [550] = 550, - [551] = 544, + [551] = 551, [552] = 552, - [553] = 546, - [554] = 482, + [553] = 553, + [554] = 494, [555] = 555, - [556] = 550, - [557] = 549, - [558] = 546, - [559] = 487, - [560] = 544, - [561] = 550, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 481, + [561] = 482, [562] = 562, - [563] = 477, + [563] = 563, [564] = 564, - [565] = 565, - [566] = 544, - [567] = 485, - [568] = 549, - [569] = 569, - [570] = 550, - [571] = 491, - [572] = 481, - [573] = 480, - [574] = 549, - [575] = 474, + [565] = 490, + [566] = 542, + [567] = 567, + [568] = 568, + [569] = 548, + [570] = 491, + [571] = 487, + [572] = 492, + [573] = 573, + [574] = 574, + [575] = 573, [576] = 576, [577] = 577, - [578] = 488, + [578] = 578, [579] = 579, - [580] = 484, - [581] = 476, - [582] = 582, - [583] = 564, + [580] = 546, + [581] = 478, + [582] = 479, + [583] = 483, [584] = 584, [585] = 585, - [586] = 478, - [587] = 489, - [588] = 588, - [589] = 546, - [590] = 590, - [591] = 591, - [592] = 475, - [593] = 593, + [586] = 586, + [587] = 548, + [588] = 542, + [589] = 589, + [590] = 546, + [591] = 573, + [592] = 592, + [593] = 480, [594] = 594, - [595] = 483, - [596] = 596, - [597] = 490, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, + [595] = 548, + [596] = 488, + [597] = 489, + [598] = 578, + [599] = 542, + [600] = 546, + [601] = 573, [602] = 602, - [603] = 552, + [603] = 603, [604] = 604, - [605] = 598, - [606] = 606, + [605] = 605, + [606] = 564, [607] = 607, - [608] = 601, - [609] = 599, - [610] = 600, - [611] = 611, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 607, [612] = 612, [613] = 613, - [614] = 614, - [615] = 602, + [614] = 602, + [615] = 615, [616] = 616, - [617] = 617, - [618] = 584, - [619] = 594, - [620] = 613, - [621] = 614, - [622] = 622, + [617] = 604, + [618] = 610, + [619] = 557, + [620] = 620, + [621] = 621, + [622] = 615, [623] = 623, [624] = 624, - [625] = 625, - [626] = 275, - [627] = 627, + [625] = 577, + [626] = 605, + [627] = 609, [628] = 628, [629] = 629, - [630] = 630, - [631] = 629, + [630] = 264, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, - [635] = 635, - [636] = 628, + [635] = 632, + [636] = 636, [637] = 637, - [638] = 635, - [639] = 637, - [640] = 634, + [638] = 636, + [639] = 633, + [640] = 637, [641] = 641, - [642] = 637, - [643] = 643, + [642] = 641, + [643] = 632, [644] = 644, [645] = 645, [646] = 646, - [647] = 644, + [647] = 647, [648] = 648, [649] = 649, - [650] = 643, + [650] = 650, [651] = 651, - [652] = 652, + [652] = 648, [653] = 653, [654] = 654, [655] = 655, - [656] = 652, + [656] = 656, [657] = 657, [658] = 658, [659] = 659, - [660] = 660, + [660] = 658, [661] = 661, [662] = 662, - [663] = 645, + [663] = 663, [664] = 664, - [665] = 664, - [666] = 651, + [665] = 663, + [666] = 666, [667] = 667, - [668] = 668, + [668] = 662, [669] = 669, [670] = 670, - [671] = 671, - [672] = 653, - [673] = 673, - [674] = 669, - [675] = 675, - [676] = 676, + [671] = 658, + [672] = 663, + [673] = 670, + [674] = 674, + [675] = 649, + [676] = 656, [677] = 677, - [678] = 678, - [679] = 661, - [680] = 677, - [681] = 644, - [682] = 657, - [683] = 652, - [684] = 653, - [685] = 675, - [686] = 671, - [687] = 673, - [688] = 657, + [678] = 656, + [679] = 666, + [680] = 680, + [681] = 661, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 667, + [686] = 662, + [687] = 654, + [688] = 682, [689] = 689, [690] = 690, - [691] = 689, - [692] = 690, + [691] = 690, + [692] = 680, [693] = 693, [694] = 694, - [695] = 695, - [696] = 696, - [697] = 696, + [695] = 693, + [696] = 694, + [697] = 697, [698] = 698, [699] = 699, - [700] = 698, + [700] = 700, [701] = 701, - [702] = 702, + [702] = 700, [703] = 703, - [704] = 353, - [705] = 705, + [704] = 703, + [705] = 354, [706] = 706, [707] = 707, - [708] = 266, - [709] = 246, - [710] = 289, - [711] = 275, - [712] = 255, - [713] = 256, - [714] = 219, - [715] = 366, - [716] = 716, - [717] = 717, - [718] = 716, - [719] = 275, - [720] = 717, - [721] = 716, - [722] = 716, - [723] = 716, - [724] = 247, - [725] = 279, - [726] = 241, - [727] = 242, - [728] = 243, - [729] = 244, - [730] = 245, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 273, + [713] = 213, + [714] = 245, + [715] = 261, + [716] = 266, + [717] = 222, + [718] = 264, + [719] = 264, + [720] = 720, + [721] = 721, + [722] = 721, + [723] = 721, + [724] = 721, + [725] = 721, + [726] = 368, + [727] = 720, + [728] = 211, + [729] = 214, + [730] = 225, [731] = 731, - [732] = 236, - [733] = 733, - [734] = 248, - [735] = 249, - [736] = 274, - [737] = 250, - [738] = 235, - [739] = 251, - [740] = 252, - [741] = 253, - [742] = 254, - [743] = 257, - [744] = 260, - [745] = 261, - [746] = 262, - [747] = 263, - [748] = 259, - [749] = 265, - [750] = 267, - [751] = 751, - [752] = 278, - [753] = 287, - [754] = 280, - [755] = 264, - [756] = 281, - [757] = 282, - [758] = 284, - [759] = 285, - [760] = 238, - [761] = 288, - [762] = 234, - [763] = 225, - [764] = 291, - [765] = 292, - [766] = 293, - [767] = 276, - [768] = 239, - [769] = 223, - [770] = 270, - [771] = 269, - [772] = 206, - [773] = 237, - [774] = 221, - [775] = 210, - [776] = 226, - [777] = 217, - [778] = 216, - [779] = 215, - [780] = 208, - [781] = 207, - [782] = 205, - [783] = 268, - [784] = 211, - [785] = 212, - [786] = 213, - [787] = 214, - [788] = 218, - [789] = 209, - [790] = 229, - [791] = 271, - [792] = 290, - [793] = 227, - [794] = 286, - [795] = 283, - [796] = 230, - [797] = 231, - [798] = 232, - [799] = 233, - [800] = 240, - [801] = 272, - [802] = 273, - [803] = 277, - [804] = 369, - [805] = 370, - [806] = 367, - [807] = 371, - [808] = 368, - [809] = 371, - [810] = 369, - [811] = 368, + [732] = 224, + [733] = 226, + [734] = 223, + [735] = 227, + [736] = 277, + [737] = 289, + [738] = 290, + [739] = 228, + [740] = 232, + [741] = 292, + [742] = 279, + [743] = 246, + [744] = 247, + [745] = 283, + [746] = 238, + [747] = 239, + [748] = 220, + [749] = 237, + [750] = 236, + [751] = 207, + [752] = 752, + [753] = 221, + [754] = 235, + [755] = 240, + [756] = 282, + [757] = 248, + [758] = 219, + [759] = 218, + [760] = 244, + [761] = 249, + [762] = 217, + [763] = 210, + [764] = 241, + [765] = 216, + [766] = 288, + [767] = 284, + [768] = 250, + [769] = 281, + [770] = 280, + [771] = 276, + [772] = 285, + [773] = 275, + [774] = 215, + [775] = 775, + [776] = 274, + [777] = 278, + [778] = 242, + [779] = 212, + [780] = 243, + [781] = 208, + [782] = 272, + [783] = 263, + [784] = 271, + [785] = 270, + [786] = 251, + [787] = 269, + [788] = 268, + [789] = 267, + [790] = 287, + [791] = 265, + [792] = 252, + [793] = 295, + [794] = 260, + [795] = 294, + [796] = 259, + [797] = 293, + [798] = 258, + [799] = 257, + [800] = 256, + [801] = 209, + [802] = 254, + [803] = 253, + [804] = 262, + [805] = 291, + [806] = 286, + [807] = 255, + [808] = 373, + [809] = 369, + [810] = 372, + [811] = 371, [812] = 370, - [813] = 373, - [814] = 375, - [815] = 374, - [816] = 816, - [817] = 380, - [818] = 379, - [819] = 377, - [820] = 412, - [821] = 399, - [822] = 385, + [813] = 370, + [814] = 373, + [815] = 372, + [816] = 371, + [817] = 378, + [818] = 375, + [819] = 819, + [820] = 383, + [821] = 381, + [822] = 376, [823] = 382, - [824] = 386, - [825] = 385, - [826] = 418, - [827] = 414, - [828] = 386, - [829] = 414, - [830] = 403, - [831] = 376, + [824] = 377, + [825] = 386, + [826] = 380, + [827] = 827, + [828] = 404, + [829] = 412, + [830] = 407, + [831] = 403, [832] = 413, - [833] = 378, + [833] = 398, [834] = 393, - [835] = 401, - [836] = 372, - [837] = 407, - [838] = 412, - [839] = 394, - [840] = 840, - [841] = 418, - [842] = 842, - [843] = 411, - [844] = 410, - [845] = 845, - [846] = 391, - [847] = 200, - [848] = 392, - [849] = 196, - [850] = 850, - [851] = 194, - [852] = 195, - [853] = 384, + [835] = 394, + [836] = 401, + [837] = 419, + [838] = 838, + [839] = 385, + [840] = 379, + [841] = 411, + [842] = 419, + [843] = 400, + [844] = 403, + [845] = 413, + [846] = 385, + [847] = 386, + [848] = 396, + [849] = 849, + [850] = 410, + [851] = 405, + [852] = 402, + [853] = 408, [854] = 854, - [855] = 390, - [856] = 198, - [857] = 387, - [858] = 402, - [859] = 389, - [860] = 409, - [861] = 410, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, + [855] = 406, + [856] = 199, + [857] = 409, + [858] = 200, + [859] = 397, + [860] = 201, + [861] = 861, + [862] = 197, + [863] = 202, + [864] = 384, + [865] = 396, [866] = 866, [867] = 867, [868] = 868, @@ -3569,26 +3581,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [870] = 870, [871] = 871, [872] = 872, - [873] = 174, + [873] = 873, [874] = 874, - [875] = 169, - [876] = 171, - [877] = 173, + [875] = 173, + [876] = 876, + [877] = 171, [878] = 878, - [879] = 879, - [880] = 879, - [881] = 871, - [882] = 172, + [879] = 174, + [880] = 880, + [881] = 881, + [882] = 876, [883] = 883, - [884] = 884, - [885] = 885, + [884] = 176, + [885] = 172, [886] = 886, - [887] = 887, + [887] = 883, [888] = 888, [889] = 889, [890] = 890, [891] = 891, - [892] = 886, + [892] = 892, [893] = 893, [894] = 894, [895] = 895, @@ -3601,98 +3613,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [902] = 902, [903] = 903, [904] = 904, - [905] = 895, - [906] = 889, - [907] = 904, + [905] = 892, + [906] = 906, + [907] = 907, [908] = 908, [909] = 909, - [910] = 177, - [911] = 902, + [910] = 910, + [911] = 911, [912] = 912, [913] = 913, [914] = 914, [915] = 915, [916] = 916, - [917] = 917, + [917] = 192, [918] = 918, - [919] = 919, + [919] = 918, [920] = 920, [921] = 921, - [922] = 922, - [923] = 923, + [922] = 899, + [923] = 904, [924] = 924, [925] = 925, - [926] = 900, + [926] = 926, [927] = 927, - [928] = 928, + [928] = 890, [929] = 929, - [930] = 930, + [930] = 891, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 936, - [938] = 935, - [939] = 731, + [937] = 937, + [938] = 938, + [939] = 939, [940] = 940, - [941] = 366, + [941] = 941, [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 945, - [948] = 943, + [943] = 942, + [944] = 368, + [945] = 752, + [946] = 940, + [947] = 947, + [948] = 948, [949] = 949, [950] = 950, - [951] = 949, - [952] = 952, + [951] = 951, + [952] = 949, [953] = 953, - [954] = 954, - [955] = 946, + [954] = 950, + [955] = 955, [956] = 956, - [957] = 953, + [957] = 957, [958] = 958, [959] = 959, - [960] = 960, - [961] = 961, - [962] = 960, + [960] = 959, + [961] = 958, + [962] = 951, [963] = 963, [964] = 964, - [965] = 961, + [965] = 965, [966] = 966, - [967] = 966, + [967] = 967, [968] = 968, - [969] = 963, + [969] = 969, [970] = 970, [971] = 971, - [972] = 968, - [973] = 959, - [974] = 367, + [972] = 970, + [973] = 968, + [974] = 964, [975] = 975, - [976] = 963, - [977] = 353, - [978] = 960, - [979] = 979, - [980] = 980, + [976] = 976, + [977] = 964, + [978] = 965, + [979] = 966, + [980] = 354, [981] = 981, - [982] = 982, + [982] = 967, [983] = 983, - [984] = 983, - [985] = 985, + [984] = 984, + [985] = 971, [986] = 986, - [987] = 987, - [988] = 988, + [987] = 968, + [988] = 369, [989] = 989, [990] = 990, [991] = 991, [992] = 992, [993] = 991, - [994] = 989, - [995] = 986, - [996] = 988, + [994] = 994, + [995] = 995, + [996] = 996, [997] = 997, [998] = 998, [999] = 999, @@ -3701,36 +3713,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 985, - [1006] = 999, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1007, - [1011] = 1009, - [1012] = 1012, + [1005] = 1005, + [1006] = 1001, + [1007] = 995, + [1008] = 1005, + [1009] = 989, + [1010] = 1002, + [1011] = 996, + [1012] = 994, [1013] = 1013, - [1014] = 1003, - [1015] = 1001, - [1016] = 990, - [1017] = 998, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 1000, [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, + [1019] = 1014, + [1020] = 997, + [1021] = 1013, [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, [1027] = 1027, - [1028] = 1023, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1034, + [1034] = 1027, [1035] = 1035, [1036] = 1036, [1037] = 1037, @@ -3738,81 +3750,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1042, + [1042] = 1025, [1043] = 1043, - [1044] = 1022, + [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 1047, + [1047] = 1036, [1048] = 1048, - [1049] = 1049, + [1049] = 1035, [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1040, - [1054] = 1048, - [1055] = 1055, - [1056] = 1049, + [1053] = 1031, + [1054] = 1032, + [1055] = 1041, + [1056] = 1056, [1057] = 1057, - [1058] = 1058, - [1059] = 1035, - [1060] = 1050, + [1058] = 1045, + [1059] = 1059, + [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1048, - [1064] = 1057, + [1063] = 1063, + [1064] = 1064, [1065] = 1065, - [1066] = 1046, + [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1069, - [1070] = 1020, + [1069] = 1030, + [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1047, - [1074] = 1067, - [1075] = 1022, - [1076] = 1076, + [1073] = 1073, + [1074] = 1062, + [1075] = 1075, + [1076] = 1064, [1077] = 1077, - [1078] = 1039, - [1079] = 1050, - [1080] = 1071, - [1081] = 1081, - [1082] = 1058, - [1083] = 1041, - [1084] = 1084, + [1078] = 1061, + [1079] = 1075, + [1080] = 1052, + [1081] = 1071, + [1082] = 1048, + [1083] = 1067, + [1084] = 1065, [1085] = 1085, - [1086] = 1086, - [1087] = 1061, + [1086] = 1062, + [1087] = 1038, [1088] = 1088, - [1089] = 1072, - [1090] = 1055, - [1091] = 1018, - [1092] = 1036, - [1093] = 1076, - [1094] = 1094, - [1095] = 1068, - [1096] = 1049, - [1097] = 1085, - [1098] = 1042, - [1099] = 1081, - [1100] = 1100, - [1101] = 1039, - [1102] = 1033, - [1103] = 1034, - [1104] = 1022, - [1105] = 1100, - [1106] = 1106, - [1107] = 1077, - [1108] = 1042, - [1109] = 1086, - [1110] = 1062, - [1111] = 1069, - [1112] = 1036, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, + [1089] = 1036, + [1090] = 1040, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1057, + [1095] = 1095, + [1096] = 1037, + [1097] = 1072, + [1098] = 1056, + [1099] = 1052, + [1100] = 1044, + [1101] = 1043, + [1102] = 1028, + [1103] = 1088, + [1104] = 1059, + [1105] = 1105, + [1106] = 1043, + [1107] = 1093, + [1108] = 1039, + [1109] = 1070, + [1110] = 1068, + [1111] = 1111, + [1112] = 1112, + [1113] = 1025, + [1114] = 1045, + [1115] = 1062, + [1116] = 1064, [1117] = 1117, [1118] = 1118, [1119] = 1119, @@ -3831,19 +3843,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1132] = 1132, [1133] = 1133, [1134] = 1134, - [1135] = 1115, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 372, + [1141] = 1141, [1142] = 1142, - [1143] = 378, - [1144] = 376, + [1143] = 1143, + [1144] = 1144, [1145] = 1145, - [1146] = 1146, - [1147] = 1145, + [1146] = 1137, + [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -3865,99 +3877,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1169, + [1169] = 1158, [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1176, - [1177] = 1117, + [1176] = 1122, + [1177] = 1177, [1178] = 1178, [1179] = 1179, [1180] = 1180, - [1181] = 1165, + [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1186, + [1186] = 1150, [1187] = 1187, [1188] = 1188, - [1189] = 1165, + [1189] = 1189, [1190] = 1190, - [1191] = 1191, + [1191] = 1174, [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1165, - [1199] = 1199, + [1198] = 1198, + [1199] = 1193, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1201] = 377, + [1202] = 1137, [1203] = 1203, - [1204] = 1204, + [1204] = 379, [1205] = 1205, [1206] = 1206, - [1207] = 1183, + [1207] = 1207, [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, + [1209] = 1126, + [1210] = 380, + [1211] = 1117, [1212] = 1212, - [1213] = 1116, + [1213] = 1132, [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1217, - [1218] = 1206, + [1217] = 1119, + [1218] = 1218, [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1221, - [1224] = 1222, - [1225] = 1208, - [1226] = 1205, - [1227] = 1227, - [1228] = 1186, + [1220] = 1130, + [1221] = 1206, + [1222] = 1198, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1200, + [1227] = 1223, + [1228] = 1203, [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1185, - [1233] = 1211, + [1232] = 1232, + [1233] = 1233, [1234] = 1234, - [1235] = 1184, + [1235] = 1235, [1236] = 1236, - [1237] = 1148, + [1237] = 1237, [1238] = 1238, - [1239] = 1146, + [1239] = 1129, [1240] = 1240, - [1241] = 1142, + [1241] = 1241, [1242] = 1242, [1243] = 1243, [1244] = 1244, - [1245] = 1230, - [1246] = 1231, + [1245] = 1245, + [1246] = 1246, [1247] = 1247, - [1248] = 1214, - [1249] = 1249, - [1250] = 1250, + [1248] = 1236, + [1249] = 1247, + [1250] = 1246, [1251] = 1251, - [1252] = 1134, + [1252] = 1252, [1253] = 1253, - [1254] = 1175, + [1254] = 1254, [1255] = 1255, - [1256] = 1129, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, + [1256] = 1135, + [1257] = 1137, + [1258] = 1166, + [1259] = 1133, [1260] = 1260, - [1261] = 1261, + [1261] = 1253, [1262] = 1262, [1263] = 1263, [1264] = 1264, @@ -3968,87 +3980,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1262, + [1272] = 1271, [1273] = 1273, [1274] = 1274, [1275] = 1275, [1276] = 1276, - [1277] = 1274, + [1277] = 1277, [1278] = 1278, [1279] = 1279, [1280] = 1280, [1281] = 1281, - [1282] = 1271, - [1283] = 1267, + [1282] = 1279, + [1283] = 1283, [1284] = 1284, - [1285] = 1264, - [1286] = 1286, - [1287] = 1287, - [1288] = 1269, + [1285] = 1266, + [1286] = 1278, + [1287] = 1268, + [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1293, + [1292] = 1275, + [1293] = 1283, [1294] = 1294, [1295] = 1295, - [1296] = 1296, - [1297] = 1295, - [1298] = 1286, - [1299] = 1299, + [1296] = 1273, + [1297] = 1297, + [1298] = 1295, + [1299] = 196, [1300] = 1300, - [1301] = 1301, - [1302] = 1280, + [1301] = 1277, + [1302] = 1302, [1303] = 1303, - [1304] = 1281, - [1305] = 1278, - [1306] = 1290, - [1307] = 197, - [1308] = 1308, - [1309] = 1265, + [1304] = 1304, + [1305] = 1269, + [1306] = 1184, + [1307] = 1307, + [1308] = 1121, + [1309] = 1309, [1310] = 1310, - [1311] = 1311, - [1312] = 1299, - [1313] = 1125, - [1314] = 1124, - [1315] = 1293, - [1316] = 1316, - [1317] = 1317, - [1318] = 1284, - [1319] = 1319, - [1320] = 1320, - [1321] = 1276, - [1322] = 1278, + [1311] = 1291, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1280, + [1316] = 1265, + [1317] = 1313, + [1318] = 1290, + [1319] = 1267, + [1320] = 1294, + [1321] = 1321, + [1322] = 1304, [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1326, - [1327] = 1326, - [1328] = 1278, - [1329] = 1287, - [1330] = 1268, - [1331] = 1275, + [1326] = 1297, + [1327] = 1327, + [1328] = 1328, + [1329] = 1321, + [1330] = 1330, + [1331] = 1331, [1332] = 1332, - [1333] = 1267, - [1334] = 1300, - [1335] = 1335, - [1336] = 1336, - [1337] = 1261, - [1338] = 1292, - [1339] = 1300, + [1333] = 1276, + [1334] = 1283, + [1335] = 1321, + [1336] = 1281, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1342, + [1342] = 1289, [1343] = 1343, [1344] = 1344, - [1345] = 1326, - [1346] = 1346, - [1347] = 1294, - [1348] = 1326, - [1349] = 1349, + [1345] = 1321, + [1346] = 1312, + [1347] = 1347, + [1348] = 1283, + [1349] = 1313, [1350] = 1350, [1351] = 1351, - [1352] = 1352, + [1352] = 1280, [1353] = 1353, [1354] = 1354, [1355] = 1355, @@ -4062,134 +4074,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 202, + [1366] = 1366, [1367] = 1367, - [1368] = 1353, + [1368] = 1368, [1369] = 1369, [1370] = 1370, [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1375, - [1376] = 1374, + [1375] = 1355, + [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1369, + [1379] = 1379, [1380] = 1380, [1381] = 1381, [1382] = 1382, - [1383] = 1383, + [1383] = 1355, [1384] = 1384, - [1385] = 1369, + [1385] = 1385, [1386] = 1386, - [1387] = 1387, + [1387] = 1360, [1388] = 1388, - [1389] = 1389, - [1390] = 1350, - [1391] = 1377, - [1392] = 1389, - [1393] = 1373, + [1389] = 1355, + [1390] = 1390, + [1391] = 1382, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1380, + [1397] = 1397, [1398] = 1398, - [1399] = 1369, + [1399] = 1399, [1400] = 1400, - [1401] = 1364, - [1402] = 1402, + [1401] = 1390, + [1402] = 1357, [1403] = 1403, - [1404] = 1353, - [1405] = 1383, - [1406] = 1398, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, [1407] = 1407, - [1408] = 1408, - [1409] = 1409, + [1408] = 1407, + [1409] = 1378, [1410] = 1410, [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1414, - [1415] = 1415, + [1414] = 1405, + [1415] = 1400, [1416] = 1416, [1417] = 1417, [1418] = 1418, - [1419] = 1369, - [1420] = 1414, - [1421] = 1413, + [1419] = 1419, + [1420] = 1420, + [1421] = 1416, [1422] = 1422, - [1423] = 1423, - [1424] = 1357, + [1423] = 1417, + [1424] = 1424, [1425] = 1425, - [1426] = 1384, - [1427] = 1408, - [1428] = 1428, - [1429] = 1412, + [1426] = 204, + [1427] = 1427, + [1428] = 1377, + [1429] = 1393, [1430] = 1430, - [1431] = 1381, - [1432] = 1387, - [1433] = 1433, - [1434] = 1434, + [1431] = 1431, + [1432] = 1432, + [1433] = 1395, + [1434] = 1412, [1435] = 1435, - [1436] = 1436, + [1436] = 1373, [1437] = 1437, [1438] = 1438, - [1439] = 1437, + [1439] = 1427, [1440] = 1440, - [1441] = 1354, - [1442] = 1364, + [1441] = 203, + [1442] = 1394, [1443] = 1443, - [1444] = 1444, + [1444] = 1392, [1445] = 1445, [1446] = 1446, - [1447] = 1388, + [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 1450, - [1451] = 1353, - [1452] = 1383, - [1453] = 1357, - [1454] = 1410, - [1455] = 1357, - [1456] = 1456, - [1457] = 1375, + [1450] = 1418, + [1451] = 1373, + [1452] = 1411, + [1453] = 1453, + [1454] = 1355, + [1455] = 1407, + [1456] = 1378, + [1457] = 1377, [1458] = 1458, - [1459] = 1459, - [1460] = 1367, - [1461] = 1361, - [1462] = 1435, - [1463] = 1382, - [1464] = 1464, - [1465] = 1465, - [1466] = 1448, - [1467] = 1450, - [1468] = 1468, - [1469] = 1445, - [1470] = 1396, - [1471] = 1352, - [1472] = 1355, - [1473] = 1443, - [1474] = 1360, - [1475] = 1475, - [1476] = 1450, - [1477] = 1445, - [1478] = 1450, - [1479] = 1445, - [1480] = 1444, - [1481] = 1411, - [1482] = 1430, - [1483] = 1464, - [1484] = 1356, - [1485] = 1485, - [1486] = 1394, - [1487] = 1487, - [1488] = 1459, - [1489] = 201, - [1490] = 1351, - [1491] = 1359, - [1492] = 1485, - [1493] = 1418, + [1459] = 1377, + [1460] = 1407, + [1461] = 1353, + [1462] = 1438, + [1463] = 1463, + [1464] = 1368, + [1465] = 1370, + [1466] = 1466, + [1467] = 1467, + [1468] = 1430, + [1469] = 1469, + [1470] = 1406, + [1471] = 1403, + [1472] = 1399, + [1473] = 1447, + [1474] = 1474, + [1475] = 1374, + [1476] = 1361, + [1477] = 1467, + [1478] = 1404, + [1479] = 1449, + [1480] = 1403, + [1481] = 1447, + [1482] = 1403, + [1483] = 1447, + [1484] = 1397, + [1485] = 1379, + [1486] = 1420, + [1487] = 1453, + [1488] = 1488, + [1489] = 1489, + [1490] = 1372, + [1491] = 1445, + [1492] = 1398, + [1493] = 1488, + [1494] = 1362, + [1495] = 1446, + [1496] = 1386, + [1497] = 1380, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7680,7 +7696,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(75); if (lookahead == '/') ADVANCE(59); if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(69); + if (lookahead == ':') ADVANCE(20); if (lookahead == ';') ADVANCE(57); if (lookahead == '<') ADVANCE(91); if (lookahead == '=') ADVANCE(66); @@ -7713,6 +7729,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(63); if (lookahead == '.') ADVANCE(75); if (lookahead == '/') ADVANCE(59); + if (lookahead == ':') ADVANCE(69); if (lookahead == ';') ADVANCE(57); if (lookahead == '<') ADVANCE(91); if (lookahead == '=') ADVANCE(66); @@ -7744,12 +7761,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(75); if (lookahead == '/') ADVANCE(59); - if (lookahead == ':') ADVANCE(20); + if (lookahead == ':') ADVANCE(69); if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(107); + if (lookahead == '<') ADVANCE(91); if (lookahead == '=') ADVANCE(66); if (lookahead == '>') ADVANCE(93); - if (lookahead == '?') ADVANCE(74); if (lookahead == '[') ADVANCE(99); if (lookahead == ']') ADVANCE(100); if (lookahead == '^') ADVANCE(87); @@ -7778,9 +7794,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(59); if (lookahead == ':') ADVANCE(20); if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(91); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(66); if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(74); if (lookahead == '[') ADVANCE(99); if (lookahead == ']') ADVANCE(100); if (lookahead == '^') ADVANCE(87); @@ -9504,31 +9521,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 55, .external_lex_state = 2}, [51] = {.lex_state = 55, .external_lex_state = 2}, [52] = {.lex_state = 55, .external_lex_state = 2}, - [53] = {.lex_state = 55, .external_lex_state = 2}, - [54] = {.lex_state = 6, .external_lex_state = 2}, + [53] = {.lex_state = 6, .external_lex_state = 2}, + [54] = {.lex_state = 55, .external_lex_state = 2}, [55] = {.lex_state = 6, .external_lex_state = 2}, [56] = {.lex_state = 55, .external_lex_state = 2}, [57] = {.lex_state = 6, .external_lex_state = 2}, - [58] = {.lex_state = 55, .external_lex_state = 2}, - [59] = {.lex_state = 55, .external_lex_state = 2}, + [58] = {.lex_state = 6, .external_lex_state = 2}, + [59] = {.lex_state = 6, .external_lex_state = 2}, [60] = {.lex_state = 55, .external_lex_state = 2}, - [61] = {.lex_state = 6, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 55, .external_lex_state = 2}, + [62] = {.lex_state = 6, .external_lex_state = 2}, [63] = {.lex_state = 55, .external_lex_state = 2}, - [64] = {.lex_state = 55, .external_lex_state = 2}, + [64] = {.lex_state = 6, .external_lex_state = 2}, [65] = {.lex_state = 6, .external_lex_state = 2}, [66] = {.lex_state = 6, .external_lex_state = 2}, - [67] = {.lex_state = 6, .external_lex_state = 2}, - [68] = {.lex_state = 6, .external_lex_state = 2}, - [69] = {.lex_state = 55, .external_lex_state = 2}, + [67] = {.lex_state = 55, .external_lex_state = 2}, + [68] = {.lex_state = 55, .external_lex_state = 2}, + [69] = {.lex_state = 6, .external_lex_state = 2}, [70] = {.lex_state = 55, .external_lex_state = 2}, [71] = {.lex_state = 55, .external_lex_state = 2}, [72] = {.lex_state = 6, .external_lex_state = 2}, - [73] = {.lex_state = 6, .external_lex_state = 2}, + [73] = {.lex_state = 55, .external_lex_state = 2}, [74] = {.lex_state = 55, .external_lex_state = 2}, [75] = {.lex_state = 55, .external_lex_state = 2}, [76] = {.lex_state = 6, .external_lex_state = 2}, - [77] = {.lex_state = 6, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 55, .external_lex_state = 2}, [79] = {.lex_state = 55, .external_lex_state = 2}, [80] = {.lex_state = 55, .external_lex_state = 2}, @@ -9559,14 +9576,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 55, .external_lex_state = 2}, [106] = {.lex_state = 55, .external_lex_state = 2}, [107] = {.lex_state = 55, .external_lex_state = 2}, - [108] = {.lex_state = 55, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 5, .external_lex_state = 2}, + [109] = {.lex_state = 55, .external_lex_state = 2}, [110] = {.lex_state = 55, .external_lex_state = 2}, [111] = {.lex_state = 55, .external_lex_state = 2}, [112] = {.lex_state = 55, .external_lex_state = 2}, [113] = {.lex_state = 55, .external_lex_state = 2}, [114] = {.lex_state = 55, .external_lex_state = 2}, - [115] = {.lex_state = 55, .external_lex_state = 2}, + [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 55, .external_lex_state = 2}, [117] = {.lex_state = 55, .external_lex_state = 2}, [118] = {.lex_state = 55, .external_lex_state = 2}, @@ -9576,10 +9593,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 55, .external_lex_state = 2}, [123] = {.lex_state = 55, .external_lex_state = 2}, [124] = {.lex_state = 55, .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 = 55, .external_lex_state = 2}, + [125] = {.lex_state = 55, .external_lex_state = 2}, + [126] = {.lex_state = 55, .external_lex_state = 2}, + [127] = {.lex_state = 55, .external_lex_state = 2}, + [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 55, .external_lex_state = 2}, [130] = {.lex_state = 55, .external_lex_state = 2}, [131] = {.lex_state = 55, .external_lex_state = 2}, @@ -9589,39 +9606,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [135] = {.lex_state = 55, .external_lex_state = 2}, [136] = {.lex_state = 55, .external_lex_state = 2}, [137] = {.lex_state = 55, .external_lex_state = 2}, - [138] = {.lex_state = 55, .external_lex_state = 2}, - [139] = {.lex_state = 55, .external_lex_state = 2}, + [138] = {.lex_state = 5, .external_lex_state = 2}, + [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 55, .external_lex_state = 2}, [141] = {.lex_state = 55, .external_lex_state = 2}, [142] = {.lex_state = 55, .external_lex_state = 2}, [143] = {.lex_state = 55, .external_lex_state = 2}, [144] = {.lex_state = 55, .external_lex_state = 2}, - [145] = {.lex_state = 5, .external_lex_state = 2}, + [145] = {.lex_state = 55, .external_lex_state = 2}, [146] = {.lex_state = 55, .external_lex_state = 2}, [147] = {.lex_state = 55, .external_lex_state = 2}, [148] = {.lex_state = 55, .external_lex_state = 2}, [149] = {.lex_state = 55, .external_lex_state = 2}, [150] = {.lex_state = 55, .external_lex_state = 2}, - [151] = {.lex_state = 5, .external_lex_state = 2}, - [152] = {.lex_state = 55, .external_lex_state = 2}, - [153] = {.lex_state = 55, .external_lex_state = 2}, - [154] = {.lex_state = 55, .external_lex_state = 2}, + [151] = {.lex_state = 55, .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 = 55, .external_lex_state = 2}, [156] = {.lex_state = 55, .external_lex_state = 2}, - [157] = {.lex_state = 55, .external_lex_state = 2}, - [158] = {.lex_state = 55, .external_lex_state = 2}, + [157] = {.lex_state = 5, .external_lex_state = 2}, + [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 55, .external_lex_state = 2}, - [160] = {.lex_state = 5, .external_lex_state = 2}, - [161] = {.lex_state = 55, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, + [160] = {.lex_state = 55, .external_lex_state = 2}, + [161] = {.lex_state = 5, .external_lex_state = 2}, + [162] = {.lex_state = 55, .external_lex_state = 2}, [163] = {.lex_state = 55, .external_lex_state = 2}, [164] = {.lex_state = 55, .external_lex_state = 2}, - [165] = {.lex_state = 5, .external_lex_state = 2}, + [165] = {.lex_state = 55, .external_lex_state = 2}, [166] = {.lex_state = 55, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, - [169] = {.lex_state = 54, .external_lex_state = 2}, - [170] = {.lex_state = 54, .external_lex_state = 2}, + [167] = {.lex_state = 55, .external_lex_state = 2}, + [168] = {.lex_state = 55, .external_lex_state = 2}, + [169] = {.lex_state = 55, .external_lex_state = 2}, + [170] = {.lex_state = 55, .external_lex_state = 2}, [171] = {.lex_state = 54, .external_lex_state = 2}, [172] = {.lex_state = 54, .external_lex_state = 2}, [173] = {.lex_state = 54, .external_lex_state = 2}, @@ -9631,22 +9648,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [177] = {.lex_state = 54, .external_lex_state = 2}, [178] = {.lex_state = 54, .external_lex_state = 2}, [179] = {.lex_state = 54, .external_lex_state = 2}, - [180] = {.lex_state = 54, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 54, .external_lex_state = 2}, [182] = {.lex_state = 54, .external_lex_state = 2}, [183] = {.lex_state = 54, .external_lex_state = 2}, [184] = {.lex_state = 54, .external_lex_state = 2}, - [185] = {.lex_state = 54, .external_lex_state = 2}, + [185] = {.lex_state = 5, .external_lex_state = 2}, [186] = {.lex_state = 54, .external_lex_state = 2}, - [187] = {.lex_state = 5, .external_lex_state = 2}, + [187] = {.lex_state = 54, .external_lex_state = 2}, [188] = {.lex_state = 54, .external_lex_state = 2}, - [189] = {.lex_state = 5, .external_lex_state = 2}, + [189] = {.lex_state = 54, .external_lex_state = 2}, [190] = {.lex_state = 54, .external_lex_state = 2}, [191] = {.lex_state = 54, .external_lex_state = 2}, [192] = {.lex_state = 54, .external_lex_state = 2}, [193] = {.lex_state = 54, .external_lex_state = 2}, - [194] = {.lex_state = 5, .external_lex_state = 2}, - [195] = {.lex_state = 5, .external_lex_state = 2}, + [194] = {.lex_state = 54, .external_lex_state = 2}, + [195] = {.lex_state = 54, .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}, @@ -9654,10 +9671,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 54, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 55, .external_lex_state = 2}, - [206] = {.lex_state = 55, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 2}, + [204] = {.lex_state = 5, .external_lex_state = 2}, + [205] = {.lex_state = 54, .external_lex_state = 2}, + [206] = {.lex_state = 6, .external_lex_state = 2}, [207] = {.lex_state = 55, .external_lex_state = 2}, [208] = {.lex_state = 55, .external_lex_state = 2}, [209] = {.lex_state = 55, .external_lex_state = 2}, @@ -9745,42 +9762,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 55, .external_lex_state = 2}, [292] = {.lex_state = 55, .external_lex_state = 2}, [293] = {.lex_state = 55, .external_lex_state = 2}, - [294] = {.lex_state = 1, .external_lex_state = 3}, - [295] = {.lex_state = 1, .external_lex_state = 3}, + [294] = {.lex_state = 55, .external_lex_state = 2}, + [295] = {.lex_state = 55, .external_lex_state = 2}, [296] = {.lex_state = 1, .external_lex_state = 3}, [297] = {.lex_state = 1, .external_lex_state = 3}, [298] = {.lex_state = 1, .external_lex_state = 3}, - [299] = {.lex_state = 7, .external_lex_state = 2}, + [299] = {.lex_state = 1, .external_lex_state = 3}, [300] = {.lex_state = 1, .external_lex_state = 3}, [301] = {.lex_state = 1, .external_lex_state = 3}, [302] = {.lex_state = 7, .external_lex_state = 2}, [303] = {.lex_state = 7, .external_lex_state = 2}, - [304] = {.lex_state = 7, .external_lex_state = 2}, + [304] = {.lex_state = 1, .external_lex_state = 3}, [305] = {.lex_state = 7, .external_lex_state = 2}, - [306] = {.lex_state = 1, .external_lex_state = 3}, - [307] = {.lex_state = 1, .external_lex_state = 3}, + [306] = {.lex_state = 7, .external_lex_state = 2}, + [307] = {.lex_state = 7, .external_lex_state = 2}, [308] = {.lex_state = 1, .external_lex_state = 3}, - [309] = {.lex_state = 7, .external_lex_state = 2}, + [309] = {.lex_state = 1, .external_lex_state = 3}, [310] = {.lex_state = 1, .external_lex_state = 3}, [311] = {.lex_state = 7, .external_lex_state = 2}, - [312] = {.lex_state = 1, .external_lex_state = 3}, - [313] = {.lex_state = 7, .external_lex_state = 2}, - [314] = {.lex_state = 1, .external_lex_state = 3}, - [315] = {.lex_state = 7, .external_lex_state = 2}, + [312] = {.lex_state = 7, .external_lex_state = 2}, + [313] = {.lex_state = 1, .external_lex_state = 3}, + [314] = {.lex_state = 7, .external_lex_state = 2}, + [315] = {.lex_state = 1, .external_lex_state = 3}, [316] = {.lex_state = 1, .external_lex_state = 3}, [317] = {.lex_state = 1, .external_lex_state = 3}, [318] = {.lex_state = 7, .external_lex_state = 2}, - [319] = {.lex_state = 1, .external_lex_state = 3}, - [320] = {.lex_state = 7, .external_lex_state = 2}, - [321] = {.lex_state = 1, .external_lex_state = 3}, + [319] = {.lex_state = 7, .external_lex_state = 2}, + [320] = {.lex_state = 1, .external_lex_state = 3}, + [321] = {.lex_state = 7, .external_lex_state = 2}, [322] = {.lex_state = 1, .external_lex_state = 3}, [323] = {.lex_state = 1, .external_lex_state = 3}, [324] = {.lex_state = 1, .external_lex_state = 3}, [325] = {.lex_state = 7, .external_lex_state = 2}, [326] = {.lex_state = 1, .external_lex_state = 3}, [327] = {.lex_state = 1, .external_lex_state = 3}, - [328] = {.lex_state = 7, .external_lex_state = 2}, - [329] = {.lex_state = 7, .external_lex_state = 2}, + [328] = {.lex_state = 1, .external_lex_state = 3}, + [329] = {.lex_state = 1, .external_lex_state = 3}, [330] = {.lex_state = 7, .external_lex_state = 2}, [331] = {.lex_state = 7, .external_lex_state = 2}, [332] = {.lex_state = 7, .external_lex_state = 2}, @@ -9803,55 +9820,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [349] = {.lex_state = 7, .external_lex_state = 2}, [350] = {.lex_state = 7, .external_lex_state = 2}, [351] = {.lex_state = 7, .external_lex_state = 2}, - [352] = {.lex_state = 1, .external_lex_state = 3}, - [353] = {.lex_state = 55, .external_lex_state = 2}, - [354] = {.lex_state = 6, .external_lex_state = 2}, - [355] = {.lex_state = 6, .external_lex_state = 2}, + [352] = {.lex_state = 7, .external_lex_state = 2}, + [353] = {.lex_state = 7, .external_lex_state = 2}, + [354] = {.lex_state = 55, .external_lex_state = 2}, + [355] = {.lex_state = 1, .external_lex_state = 3}, [356] = {.lex_state = 6, .external_lex_state = 2}, - [357] = {.lex_state = 55, .external_lex_state = 2}, - [358] = {.lex_state = 55, .external_lex_state = 2}, - [359] = {.lex_state = 8, .external_lex_state = 2}, - [360] = {.lex_state = 8, .external_lex_state = 2}, + [357] = {.lex_state = 6, .external_lex_state = 2}, + [358] = {.lex_state = 6, .external_lex_state = 2}, + [359] = {.lex_state = 55, .external_lex_state = 2}, + [360] = {.lex_state = 55, .external_lex_state = 2}, [361] = {.lex_state = 8, .external_lex_state = 2}, [362] = {.lex_state = 8, .external_lex_state = 2}, [363] = {.lex_state = 8, .external_lex_state = 2}, [364] = {.lex_state = 8, .external_lex_state = 2}, [365] = {.lex_state = 8, .external_lex_state = 2}, - [366] = {.lex_state = 3, .external_lex_state = 3}, - [367] = {.lex_state = 3, .external_lex_state = 3}, - [368] = {.lex_state = 3, .external_lex_state = 3}, - [369] = {.lex_state = 3, .external_lex_state = 3}, - [370] = {.lex_state = 3, .external_lex_state = 3}, - [371] = {.lex_state = 3, .external_lex_state = 3}, - [372] = {.lex_state = 2, .external_lex_state = 3}, - [373] = {.lex_state = 2, .external_lex_state = 3}, - [374] = {.lex_state = 2, .external_lex_state = 3}, - [375] = {.lex_state = 2, .external_lex_state = 3}, + [366] = {.lex_state = 8, .external_lex_state = 2}, + [367] = {.lex_state = 8, .external_lex_state = 2}, + [368] = {.lex_state = 4, .external_lex_state = 3}, + [369] = {.lex_state = 4, .external_lex_state = 3}, + [370] = {.lex_state = 4, .external_lex_state = 3}, + [371] = {.lex_state = 4, .external_lex_state = 3}, + [372] = {.lex_state = 4, .external_lex_state = 3}, + [373] = {.lex_state = 4, .external_lex_state = 3}, + [374] = {.lex_state = 4, .external_lex_state = 3}, + [375] = {.lex_state = 4, .external_lex_state = 3}, [376] = {.lex_state = 2, .external_lex_state = 3}, [377] = {.lex_state = 2, .external_lex_state = 3}, [378] = {.lex_state = 2, .external_lex_state = 3}, [379] = {.lex_state = 2, .external_lex_state = 3}, - [380] = {.lex_state = 3, .external_lex_state = 3}, - [381] = {.lex_state = 3, .external_lex_state = 3}, - [382] = {.lex_state = 1, .external_lex_state = 3}, - [383] = {.lex_state = 1, .external_lex_state = 3}, + [380] = {.lex_state = 2, .external_lex_state = 3}, + [381] = {.lex_state = 2, .external_lex_state = 3}, + [382] = {.lex_state = 2, .external_lex_state = 3}, + [383] = {.lex_state = 2, .external_lex_state = 3}, [384] = {.lex_state = 1, .external_lex_state = 3}, - [385] = {.lex_state = 4, .external_lex_state = 3}, - [386] = {.lex_state = 4, .external_lex_state = 3}, - [387] = {.lex_state = 1, .external_lex_state = 3}, - [388] = {.lex_state = 1, .external_lex_state = 3}, - [389] = {.lex_state = 1, .external_lex_state = 3}, + [385] = {.lex_state = 1, .external_lex_state = 3}, + [386] = {.lex_state = 1, .external_lex_state = 3}, + [387] = {.lex_state = 3, .external_lex_state = 3}, + [388] = {.lex_state = 3, .external_lex_state = 3}, + [389] = {.lex_state = 3, .external_lex_state = 3}, [390] = {.lex_state = 1, .external_lex_state = 3}, [391] = {.lex_state = 1, .external_lex_state = 3}, [392] = {.lex_state = 1, .external_lex_state = 3}, [393] = {.lex_state = 1, .external_lex_state = 3}, [394] = {.lex_state = 1, .external_lex_state = 3}, - [395] = {.lex_state = 4, .external_lex_state = 3}, + [395] = {.lex_state = 3, .external_lex_state = 3}, [396] = {.lex_state = 1, .external_lex_state = 3}, [397] = {.lex_state = 1, .external_lex_state = 3}, - [398] = {.lex_state = 4, .external_lex_state = 3}, - [399] = {.lex_state = 1, .external_lex_state = 3}, - [400] = {.lex_state = 4, .external_lex_state = 3}, + [398] = {.lex_state = 1, .external_lex_state = 3}, + [399] = {.lex_state = 3, .external_lex_state = 3}, + [400] = {.lex_state = 1, .external_lex_state = 3}, [401] = {.lex_state = 1, .external_lex_state = 3}, [402] = {.lex_state = 1, .external_lex_state = 3}, [403] = {.lex_state = 1, .external_lex_state = 3}, @@ -9863,15 +9880,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 1, .external_lex_state = 3}, [410] = {.lex_state = 1, .external_lex_state = 3}, [411] = {.lex_state = 1, .external_lex_state = 3}, - [412] = {.lex_state = 4, .external_lex_state = 3}, + [412] = {.lex_state = 1, .external_lex_state = 3}, [413] = {.lex_state = 1, .external_lex_state = 3}, - [414] = {.lex_state = 4, .external_lex_state = 3}, + [414] = {.lex_state = 1, .external_lex_state = 3}, [415] = {.lex_state = 1, .external_lex_state = 3}, - [416] = {.lex_state = 4, .external_lex_state = 3}, + [416] = {.lex_state = 1, .external_lex_state = 3}, [417] = {.lex_state = 1, .external_lex_state = 3}, - [418] = {.lex_state = 4, .external_lex_state = 3}, + [418] = {.lex_state = 3, .external_lex_state = 3}, [419] = {.lex_state = 1, .external_lex_state = 3}, - [420] = {.lex_state = 1, .external_lex_state = 3}, + [420] = {.lex_state = 3, .external_lex_state = 3}, [421] = {.lex_state = 1, .external_lex_state = 3}, [422] = {.lex_state = 1, .external_lex_state = 3}, [423] = {.lex_state = 1, .external_lex_state = 3}, @@ -9886,7 +9903,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [432] = {.lex_state = 1, .external_lex_state = 3}, [433] = {.lex_state = 1, .external_lex_state = 3}, [434] = {.lex_state = 1, .external_lex_state = 3}, - [435] = {.lex_state = 4, .external_lex_state = 3}, + [435] = {.lex_state = 1, .external_lex_state = 3}, [436] = {.lex_state = 1, .external_lex_state = 3}, [437] = {.lex_state = 1, .external_lex_state = 3}, [438] = {.lex_state = 1, .external_lex_state = 3}, @@ -9901,34 +9918,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [447] = {.lex_state = 1, .external_lex_state = 3}, [448] = {.lex_state = 1, .external_lex_state = 3}, [449] = {.lex_state = 1, .external_lex_state = 3}, - [450] = {.lex_state = 4, .external_lex_state = 3}, + [450] = {.lex_state = 1, .external_lex_state = 3}, [451] = {.lex_state = 1, .external_lex_state = 3}, [452] = {.lex_state = 1, .external_lex_state = 3}, [453] = {.lex_state = 1, .external_lex_state = 3}, [454] = {.lex_state = 1, .external_lex_state = 3}, [455] = {.lex_state = 1, .external_lex_state = 3}, [456] = {.lex_state = 1, .external_lex_state = 3}, - [457] = {.lex_state = 4, .external_lex_state = 3}, + [457] = {.lex_state = 1, .external_lex_state = 3}, [458] = {.lex_state = 1, .external_lex_state = 3}, [459] = {.lex_state = 1, .external_lex_state = 3}, [460] = {.lex_state = 1, .external_lex_state = 3}, - [461] = {.lex_state = 4, .external_lex_state = 3}, + [461] = {.lex_state = 1, .external_lex_state = 3}, [462] = {.lex_state = 1, .external_lex_state = 3}, [463] = {.lex_state = 1, .external_lex_state = 3}, [464] = {.lex_state = 1, .external_lex_state = 3}, [465] = {.lex_state = 1, .external_lex_state = 3}, [466] = {.lex_state = 1, .external_lex_state = 3}, [467] = {.lex_state = 1, .external_lex_state = 3}, - [468] = {.lex_state = 4, .external_lex_state = 3}, - [469] = {.lex_state = 3, .external_lex_state = 3}, - [470] = {.lex_state = 3, .external_lex_state = 3}, - [471] = {.lex_state = 3, .external_lex_state = 3}, - [472] = {.lex_state = 1, .external_lex_state = 3}, - [473] = {.lex_state = 3, .external_lex_state = 3}, - [474] = {.lex_state = 1, .external_lex_state = 3}, - [475] = {.lex_state = 1, .external_lex_state = 3}, + [468] = {.lex_state = 1, .external_lex_state = 3}, + [469] = {.lex_state = 1, .external_lex_state = 3}, + [470] = {.lex_state = 1, .external_lex_state = 3}, + [471] = {.lex_state = 1, .external_lex_state = 3}, + [472] = {.lex_state = 4, .external_lex_state = 3}, + [473] = {.lex_state = 4, .external_lex_state = 3}, + [474] = {.lex_state = 4, .external_lex_state = 3}, + [475] = {.lex_state = 4, .external_lex_state = 3}, [476] = {.lex_state = 1, .external_lex_state = 3}, - [477] = {.lex_state = 1, .external_lex_state = 3}, + [477] = {.lex_state = 4, .external_lex_state = 3}, [478] = {.lex_state = 1, .external_lex_state = 3}, [479] = {.lex_state = 1, .external_lex_state = 3}, [480] = {.lex_state = 1, .external_lex_state = 3}, @@ -9943,23 +9960,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 1, .external_lex_state = 3}, [490] = {.lex_state = 1, .external_lex_state = 3}, [491] = {.lex_state = 1, .external_lex_state = 3}, - [492] = {.lex_state = 3, .external_lex_state = 3}, - [493] = {.lex_state = 3, .external_lex_state = 3}, + [492] = {.lex_state = 1, .external_lex_state = 3}, + [493] = {.lex_state = 1, .external_lex_state = 3}, [494] = {.lex_state = 1, .external_lex_state = 3}, [495] = {.lex_state = 4, .external_lex_state = 3}, [496] = {.lex_state = 1, .external_lex_state = 3}, - [497] = {.lex_state = 4, .external_lex_state = 3}, + [497] = {.lex_state = 1, .external_lex_state = 3}, [498] = {.lex_state = 1, .external_lex_state = 3}, - [499] = {.lex_state = 4, .external_lex_state = 3}, + [499] = {.lex_state = 1, .external_lex_state = 3}, [500] = {.lex_state = 1, .external_lex_state = 3}, - [501] = {.lex_state = 4, .external_lex_state = 3}, + [501] = {.lex_state = 1, .external_lex_state = 3}, [502] = {.lex_state = 1, .external_lex_state = 3}, - [503] = {.lex_state = 4, .external_lex_state = 3}, - [504] = {.lex_state = 4, .external_lex_state = 3}, + [503] = {.lex_state = 1, .external_lex_state = 3}, + [504] = {.lex_state = 1, .external_lex_state = 3}, [505] = {.lex_state = 1, .external_lex_state = 3}, [506] = {.lex_state = 1, .external_lex_state = 3}, [507] = {.lex_state = 1, .external_lex_state = 3}, - [508] = {.lex_state = 4, .external_lex_state = 3}, + [508] = {.lex_state = 1, .external_lex_state = 3}, [509] = {.lex_state = 1, .external_lex_state = 3}, [510] = {.lex_state = 1, .external_lex_state = 3}, [511] = {.lex_state = 1, .external_lex_state = 3}, @@ -9967,10 +9984,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [513] = {.lex_state = 1, .external_lex_state = 3}, [514] = {.lex_state = 1, .external_lex_state = 3}, [515] = {.lex_state = 1, .external_lex_state = 3}, - [516] = {.lex_state = 1, .external_lex_state = 3}, + [516] = {.lex_state = 11, .external_lex_state = 3}, [517] = {.lex_state = 1, .external_lex_state = 3}, [518] = {.lex_state = 1, .external_lex_state = 3}, - [519] = {.lex_state = 11, .external_lex_state = 3}, + [519] = {.lex_state = 1, .external_lex_state = 3}, [520] = {.lex_state = 1, .external_lex_state = 3}, [521] = {.lex_state = 1, .external_lex_state = 3}, [522] = {.lex_state = 1, .external_lex_state = 3}, @@ -9989,16 +10006,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [535] = {.lex_state = 1, .external_lex_state = 3}, [536] = {.lex_state = 1, .external_lex_state = 3}, [537] = {.lex_state = 1, .external_lex_state = 3}, - [538] = {.lex_state = 11, .external_lex_state = 3}, + [538] = {.lex_state = 1, .external_lex_state = 3}, [539] = {.lex_state = 1, .external_lex_state = 3}, - [540] = {.lex_state = 11, .external_lex_state = 3}, - [541] = {.lex_state = 1, .external_lex_state = 3}, + [540] = {.lex_state = 1, .external_lex_state = 3}, + [541] = {.lex_state = 11, .external_lex_state = 3}, [542] = {.lex_state = 1, .external_lex_state = 3}, [543] = {.lex_state = 1, .external_lex_state = 3}, [544] = {.lex_state = 1, .external_lex_state = 3}, [545] = {.lex_state = 1, .external_lex_state = 3}, [546] = {.lex_state = 1, .external_lex_state = 3}, - [547] = {.lex_state = 1, .external_lex_state = 3}, + [547] = {.lex_state = 11, .external_lex_state = 3}, [548] = {.lex_state = 1, .external_lex_state = 3}, [549] = {.lex_state = 1, .external_lex_state = 3}, [550] = {.lex_state = 1, .external_lex_state = 3}, @@ -10016,9 +10033,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [562] = {.lex_state = 1, .external_lex_state = 3}, [563] = {.lex_state = 1, .external_lex_state = 3}, [564] = {.lex_state = 1, .external_lex_state = 3}, - [565] = {.lex_state = 11, .external_lex_state = 3}, + [565] = {.lex_state = 1, .external_lex_state = 3}, [566] = {.lex_state = 1, .external_lex_state = 3}, - [567] = {.lex_state = 1, .external_lex_state = 3}, + [567] = {.lex_state = 11, .external_lex_state = 3}, [568] = {.lex_state = 1, .external_lex_state = 3}, [569] = {.lex_state = 1, .external_lex_state = 3}, [570] = {.lex_state = 1, .external_lex_state = 3}, @@ -10030,24 +10047,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [576] = {.lex_state = 1, .external_lex_state = 3}, [577] = {.lex_state = 1, .external_lex_state = 3}, [578] = {.lex_state = 1, .external_lex_state = 3}, - [579] = {.lex_state = 1, .external_lex_state = 3}, + [579] = {.lex_state = 11, .external_lex_state = 3}, [580] = {.lex_state = 1, .external_lex_state = 3}, [581] = {.lex_state = 1, .external_lex_state = 3}, [582] = {.lex_state = 1, .external_lex_state = 3}, [583] = {.lex_state = 1, .external_lex_state = 3}, - [584] = {.lex_state = 1, .external_lex_state = 3}, + [584] = {.lex_state = 11, .external_lex_state = 3}, [585] = {.lex_state = 1, .external_lex_state = 3}, [586] = {.lex_state = 1, .external_lex_state = 3}, [587] = {.lex_state = 1, .external_lex_state = 3}, - [588] = {.lex_state = 11, .external_lex_state = 3}, - [589] = {.lex_state = 1, .external_lex_state = 3}, + [588] = {.lex_state = 1, .external_lex_state = 3}, + [589] = {.lex_state = 11, .external_lex_state = 3}, [590] = {.lex_state = 1, .external_lex_state = 3}, [591] = {.lex_state = 1, .external_lex_state = 3}, [592] = {.lex_state = 1, .external_lex_state = 3}, - [593] = {.lex_state = 11, .external_lex_state = 3}, + [593] = {.lex_state = 1, .external_lex_state = 3}, [594] = {.lex_state = 1, .external_lex_state = 3}, [595] = {.lex_state = 1, .external_lex_state = 3}, - [596] = {.lex_state = 11, .external_lex_state = 3}, + [596] = {.lex_state = 1, .external_lex_state = 3}, [597] = {.lex_state = 1, .external_lex_state = 3}, [598] = {.lex_state = 1, .external_lex_state = 3}, [599] = {.lex_state = 1, .external_lex_state = 3}, @@ -10055,20 +10072,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [601] = {.lex_state = 1, .external_lex_state = 3}, [602] = {.lex_state = 1, .external_lex_state = 3}, [603] = {.lex_state = 1, .external_lex_state = 3}, - [604] = {.lex_state = 11, .external_lex_state = 3}, + [604] = {.lex_state = 1, .external_lex_state = 3}, [605] = {.lex_state = 1, .external_lex_state = 3}, - [606] = {.lex_state = 11, .external_lex_state = 3}, + [606] = {.lex_state = 1, .external_lex_state = 3}, [607] = {.lex_state = 1, .external_lex_state = 3}, [608] = {.lex_state = 1, .external_lex_state = 3}, [609] = {.lex_state = 1, .external_lex_state = 3}, [610] = {.lex_state = 1, .external_lex_state = 3}, [611] = {.lex_state = 1, .external_lex_state = 3}, - [612] = {.lex_state = 1, .external_lex_state = 3}, - [613] = {.lex_state = 1, .external_lex_state = 3}, + [612] = {.lex_state = 11, .external_lex_state = 3}, + [613] = {.lex_state = 11, .external_lex_state = 3}, [614] = {.lex_state = 1, .external_lex_state = 3}, [615] = {.lex_state = 1, .external_lex_state = 3}, [616] = {.lex_state = 1, .external_lex_state = 3}, - [617] = {.lex_state = 11, .external_lex_state = 3}, + [617] = {.lex_state = 1, .external_lex_state = 3}, [618] = {.lex_state = 1, .external_lex_state = 3}, [619] = {.lex_state = 1, .external_lex_state = 3}, [620] = {.lex_state = 1, .external_lex_state = 3}, @@ -10076,15 +10093,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [622] = {.lex_state = 1, .external_lex_state = 3}, [623] = {.lex_state = 1, .external_lex_state = 3}, [624] = {.lex_state = 11, .external_lex_state = 3}, - [625] = {.lex_state = 8, .external_lex_state = 2}, - [626] = {.lex_state = 7, .external_lex_state = 2}, - [627] = {.lex_state = 8, .external_lex_state = 2}, + [625] = {.lex_state = 1, .external_lex_state = 3}, + [626] = {.lex_state = 1, .external_lex_state = 3}, + [627] = {.lex_state = 1, .external_lex_state = 3}, [628] = {.lex_state = 11, .external_lex_state = 3}, - [629] = {.lex_state = 11, .external_lex_state = 3}, - [630] = {.lex_state = 11, .external_lex_state = 3}, - [631] = {.lex_state = 11, .external_lex_state = 3}, + [629] = {.lex_state = 8, .external_lex_state = 2}, + [630] = {.lex_state = 7, .external_lex_state = 2}, + [631] = {.lex_state = 8, .external_lex_state = 2}, [632] = {.lex_state = 11, .external_lex_state = 3}, - [633] = {.lex_state = 12, .external_lex_state = 3}, + [633] = {.lex_state = 11, .external_lex_state = 3}, [634] = {.lex_state = 11, .external_lex_state = 3}, [635] = {.lex_state = 11, .external_lex_state = 3}, [636] = {.lex_state = 11, .external_lex_state = 3}, @@ -10095,7 +10112,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 11, .external_lex_state = 3}, [642] = {.lex_state = 11, .external_lex_state = 3}, [643] = {.lex_state = 11, .external_lex_state = 3}, - [644] = {.lex_state = 11, .external_lex_state = 3}, + [644] = {.lex_state = 12, .external_lex_state = 3}, [645] = {.lex_state = 11, .external_lex_state = 3}, [646] = {.lex_state = 11, .external_lex_state = 3}, [647] = {.lex_state = 11, .external_lex_state = 3}, @@ -10166,7 +10183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [712] = {.lex_state = 11, .external_lex_state = 3}, [713] = {.lex_state = 1, .external_lex_state = 3}, [714] = {.lex_state = 11, .external_lex_state = 3}, - [715] = {.lex_state = 16, .external_lex_state = 3}, + [715] = {.lex_state = 11, .external_lex_state = 3}, [716] = {.lex_state = 11, .external_lex_state = 3}, [717] = {.lex_state = 11, .external_lex_state = 3}, [718] = {.lex_state = 11, .external_lex_state = 3}, @@ -10175,16 +10192,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [721] = {.lex_state = 11, .external_lex_state = 3}, [722] = {.lex_state = 11, .external_lex_state = 3}, [723] = {.lex_state = 11, .external_lex_state = 3}, - [724] = {.lex_state = 1, .external_lex_state = 3}, - [725] = {.lex_state = 1, .external_lex_state = 3}, - [726] = {.lex_state = 1, .external_lex_state = 3}, - [727] = {.lex_state = 1, .external_lex_state = 3}, + [724] = {.lex_state = 11, .external_lex_state = 3}, + [725] = {.lex_state = 11, .external_lex_state = 3}, + [726] = {.lex_state = 16, .external_lex_state = 3}, + [727] = {.lex_state = 11, .external_lex_state = 3}, [728] = {.lex_state = 1, .external_lex_state = 3}, [729] = {.lex_state = 1, .external_lex_state = 3}, [730] = {.lex_state = 1, .external_lex_state = 3}, [731] = {.lex_state = 11, .external_lex_state = 3}, [732] = {.lex_state = 1, .external_lex_state = 3}, - [733] = {.lex_state = 11, .external_lex_state = 3}, + [733] = {.lex_state = 1, .external_lex_state = 3}, [734] = {.lex_state = 1, .external_lex_state = 3}, [735] = {.lex_state = 1, .external_lex_state = 3}, [736] = {.lex_state = 1, .external_lex_state = 3}, @@ -10202,8 +10219,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [748] = {.lex_state = 1, .external_lex_state = 3}, [749] = {.lex_state = 1, .external_lex_state = 3}, [750] = {.lex_state = 1, .external_lex_state = 3}, - [751] = {.lex_state = 17, .external_lex_state = 3}, - [752] = {.lex_state = 1, .external_lex_state = 3}, + [751] = {.lex_state = 1, .external_lex_state = 3}, + [752] = {.lex_state = 11, .external_lex_state = 3}, [753] = {.lex_state = 1, .external_lex_state = 3}, [754] = {.lex_state = 1, .external_lex_state = 3}, [755] = {.lex_state = 1, .external_lex_state = 3}, @@ -10226,7 +10243,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 1, .external_lex_state = 3}, [773] = {.lex_state = 1, .external_lex_state = 3}, [774] = {.lex_state = 1, .external_lex_state = 3}, - [775] = {.lex_state = 1, .external_lex_state = 3}, + [775] = {.lex_state = 17, .external_lex_state = 3}, [776] = {.lex_state = 1, .external_lex_state = 3}, [777] = {.lex_state = 1, .external_lex_state = 3}, [778] = {.lex_state = 1, .external_lex_state = 3}, @@ -10255,220 +10272,220 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 1, .external_lex_state = 3}, [802] = {.lex_state = 1, .external_lex_state = 3}, [803] = {.lex_state = 1, .external_lex_state = 3}, - [804] = {.lex_state = 16, .external_lex_state = 3}, - [805] = {.lex_state = 16, .external_lex_state = 3}, - [806] = {.lex_state = 16, .external_lex_state = 3}, - [807] = {.lex_state = 16, .external_lex_state = 3}, + [804] = {.lex_state = 1, .external_lex_state = 3}, + [805] = {.lex_state = 1, .external_lex_state = 3}, + [806] = {.lex_state = 1, .external_lex_state = 3}, + [807] = {.lex_state = 1, .external_lex_state = 3}, [808] = {.lex_state = 16, .external_lex_state = 3}, - [809] = {.lex_state = 17, .external_lex_state = 3}, - [810] = {.lex_state = 17, .external_lex_state = 3}, - [811] = {.lex_state = 17, .external_lex_state = 3}, - [812] = {.lex_state = 17, .external_lex_state = 3}, - [813] = {.lex_state = 11, .external_lex_state = 3}, - [814] = {.lex_state = 11, .external_lex_state = 3}, - [815] = {.lex_state = 11, .external_lex_state = 3}, - [816] = {.lex_state = 18, .external_lex_state = 3}, - [817] = {.lex_state = 16, .external_lex_state = 3}, - [818] = {.lex_state = 11, .external_lex_state = 3}, - [819] = {.lex_state = 11, .external_lex_state = 3}, - [820] = {.lex_state = 17, .external_lex_state = 3}, + [809] = {.lex_state = 16, .external_lex_state = 3}, + [810] = {.lex_state = 16, .external_lex_state = 3}, + [811] = {.lex_state = 16, .external_lex_state = 3}, + [812] = {.lex_state = 16, .external_lex_state = 3}, + [813] = {.lex_state = 17, .external_lex_state = 3}, + [814] = {.lex_state = 17, .external_lex_state = 3}, + [815] = {.lex_state = 17, .external_lex_state = 3}, + [816] = {.lex_state = 17, .external_lex_state = 3}, + [817] = {.lex_state = 11, .external_lex_state = 3}, + [818] = {.lex_state = 16, .external_lex_state = 3}, + [819] = {.lex_state = 18, .external_lex_state = 3}, + [820] = {.lex_state = 11, .external_lex_state = 3}, [821] = {.lex_state = 11, .external_lex_state = 3}, - [822] = {.lex_state = 16, .external_lex_state = 3}, + [822] = {.lex_state = 11, .external_lex_state = 3}, [823] = {.lex_state = 11, .external_lex_state = 3}, - [824] = {.lex_state = 17, .external_lex_state = 3}, + [824] = {.lex_state = 11, .external_lex_state = 3}, [825] = {.lex_state = 17, .external_lex_state = 3}, - [826] = {.lex_state = 16, .external_lex_state = 3}, - [827] = {.lex_state = 16, .external_lex_state = 3}, - [828] = {.lex_state = 16, .external_lex_state = 3}, - [829] = {.lex_state = 17, .external_lex_state = 3}, + [826] = {.lex_state = 11, .external_lex_state = 3}, + [827] = {.lex_state = 5, .external_lex_state = 2}, + [828] = {.lex_state = 11, .external_lex_state = 3}, + [829] = {.lex_state = 11, .external_lex_state = 3}, [830] = {.lex_state = 11, .external_lex_state = 3}, - [831] = {.lex_state = 11, .external_lex_state = 3}, - [832] = {.lex_state = 11, .external_lex_state = 3}, + [831] = {.lex_state = 17, .external_lex_state = 3}, + [832] = {.lex_state = 16, .external_lex_state = 3}, [833] = {.lex_state = 11, .external_lex_state = 3}, [834] = {.lex_state = 11, .external_lex_state = 3}, [835] = {.lex_state = 11, .external_lex_state = 3}, [836] = {.lex_state = 11, .external_lex_state = 3}, - [837] = {.lex_state = 11, .external_lex_state = 3}, - [838] = {.lex_state = 16, .external_lex_state = 3}, - [839] = {.lex_state = 11, .external_lex_state = 3}, - [840] = {.lex_state = 5, .external_lex_state = 2}, - [841] = {.lex_state = 17, .external_lex_state = 3}, - [842] = {.lex_state = 17, .external_lex_state = 3}, + [837] = {.lex_state = 17, .external_lex_state = 3}, + [838] = {.lex_state = 17, .external_lex_state = 3}, + [839] = {.lex_state = 17, .external_lex_state = 3}, + [840] = {.lex_state = 11, .external_lex_state = 3}, + [841] = {.lex_state = 11, .external_lex_state = 3}, + [842] = {.lex_state = 16, .external_lex_state = 3}, [843] = {.lex_state = 11, .external_lex_state = 3}, - [844] = {.lex_state = 11, .external_lex_state = 3}, - [845] = {.lex_state = 5, .external_lex_state = 2}, - [846] = {.lex_state = 11, .external_lex_state = 3}, - [847] = {.lex_state = 18, .external_lex_state = 3}, + [844] = {.lex_state = 16, .external_lex_state = 3}, + [845] = {.lex_state = 17, .external_lex_state = 3}, + [846] = {.lex_state = 16, .external_lex_state = 3}, + [847] = {.lex_state = 16, .external_lex_state = 3}, [848] = {.lex_state = 11, .external_lex_state = 3}, - [849] = {.lex_state = 18, .external_lex_state = 3}, - [850] = {.lex_state = 18, .external_lex_state = 3}, - [851] = {.lex_state = 18, .external_lex_state = 3}, - [852] = {.lex_state = 18, .external_lex_state = 3}, + [849] = {.lex_state = 5, .external_lex_state = 2}, + [850] = {.lex_state = 11, .external_lex_state = 3}, + [851] = {.lex_state = 11, .external_lex_state = 3}, + [852] = {.lex_state = 11, .external_lex_state = 3}, [853] = {.lex_state = 11, .external_lex_state = 3}, - [854] = {.lex_state = 5, .external_lex_state = 2}, + [854] = {.lex_state = 18, .external_lex_state = 3}, [855] = {.lex_state = 11, .external_lex_state = 3}, [856] = {.lex_state = 18, .external_lex_state = 3}, [857] = {.lex_state = 11, .external_lex_state = 3}, - [858] = {.lex_state = 11, .external_lex_state = 3}, + [858] = {.lex_state = 18, .external_lex_state = 3}, [859] = {.lex_state = 11, .external_lex_state = 3}, - [860] = {.lex_state = 11, .external_lex_state = 3}, - [861] = {.lex_state = 11, .external_lex_state = 3}, - [862] = {.lex_state = 5, .external_lex_state = 2}, + [860] = {.lex_state = 18, .external_lex_state = 3}, + [861] = {.lex_state = 5, .external_lex_state = 2}, + [862] = {.lex_state = 18, .external_lex_state = 3}, [863] = {.lex_state = 18, .external_lex_state = 3}, - [864] = {.lex_state = 18, .external_lex_state = 3}, - [865] = {.lex_state = 18, .external_lex_state = 3}, - [866] = {.lex_state = 16, .external_lex_state = 3}, - [867] = {.lex_state = 16, .external_lex_state = 3}, - [868] = {.lex_state = 16, .external_lex_state = 3}, - [869] = {.lex_state = 16, .external_lex_state = 3}, + [864] = {.lex_state = 11, .external_lex_state = 3}, + [865] = {.lex_state = 11, .external_lex_state = 3}, + [866] = {.lex_state = 5, .external_lex_state = 2}, + [867] = {.lex_state = 18, .external_lex_state = 3}, + [868] = {.lex_state = 18, .external_lex_state = 3}, + [869] = {.lex_state = 18, .external_lex_state = 3}, [870] = {.lex_state = 16, .external_lex_state = 3}, - [871] = {.lex_state = 1, .external_lex_state = 3}, - [872] = {.lex_state = 11, .external_lex_state = 3}, - [873] = {.lex_state = 11, .external_lex_state = 3}, - [874] = {.lex_state = 11, .external_lex_state = 3}, + [871] = {.lex_state = 16, .external_lex_state = 3}, + [872] = {.lex_state = 16, .external_lex_state = 3}, + [873] = {.lex_state = 16, .external_lex_state = 3}, + [874] = {.lex_state = 16, .external_lex_state = 3}, [875] = {.lex_state = 11, .external_lex_state = 3}, - [876] = {.lex_state = 11, .external_lex_state = 3}, + [876] = {.lex_state = 1, .external_lex_state = 3}, [877] = {.lex_state = 11, .external_lex_state = 3}, [878] = {.lex_state = 11, .external_lex_state = 3}, - [879] = {.lex_state = 1, .external_lex_state = 3}, - [880] = {.lex_state = 1, .external_lex_state = 3}, - [881] = {.lex_state = 1, .external_lex_state = 3}, - [882] = {.lex_state = 11, .external_lex_state = 3}, - [883] = {.lex_state = 11, .external_lex_state = 3}, - [884] = {.lex_state = 16, .external_lex_state = 3}, - [885] = {.lex_state = 12, .external_lex_state = 3}, - [886] = {.lex_state = 1, .external_lex_state = 3}, - [887] = {.lex_state = 12, .external_lex_state = 3}, + [879] = {.lex_state = 11, .external_lex_state = 3}, + [880] = {.lex_state = 12, .external_lex_state = 3}, + [881] = {.lex_state = 11, .external_lex_state = 3}, + [882] = {.lex_state = 1, .external_lex_state = 3}, + [883] = {.lex_state = 1, .external_lex_state = 3}, + [884] = {.lex_state = 11, .external_lex_state = 3}, + [885] = {.lex_state = 11, .external_lex_state = 3}, + [886] = {.lex_state = 16, .external_lex_state = 3}, + [887] = {.lex_state = 1, .external_lex_state = 3}, [888] = {.lex_state = 11, .external_lex_state = 3}, - [889] = {.lex_state = 1, .external_lex_state = 3}, - [890] = {.lex_state = 11, .external_lex_state = 3}, - [891] = {.lex_state = 11, .external_lex_state = 3}, + [889] = {.lex_state = 11, .external_lex_state = 3}, + [890] = {.lex_state = 1, .external_lex_state = 3}, + [891] = {.lex_state = 1, .external_lex_state = 3}, [892] = {.lex_state = 1, .external_lex_state = 3}, [893] = {.lex_state = 11, .external_lex_state = 3}, [894] = {.lex_state = 11, .external_lex_state = 3}, - [895] = {.lex_state = 1, .external_lex_state = 3}, + [895] = {.lex_state = 11, .external_lex_state = 3}, [896] = {.lex_state = 11, .external_lex_state = 3}, [897] = {.lex_state = 11, .external_lex_state = 3}, - [898] = {.lex_state = 11, .external_lex_state = 3}, - [899] = {.lex_state = 11, .external_lex_state = 3}, - [900] = {.lex_state = 1, .external_lex_state = 3}, + [898] = {.lex_state = 12, .external_lex_state = 3}, + [899] = {.lex_state = 1, .external_lex_state = 3}, + [900] = {.lex_state = 11, .external_lex_state = 3}, [901] = {.lex_state = 11, .external_lex_state = 3}, - [902] = {.lex_state = 1, .external_lex_state = 3}, + [902] = {.lex_state = 11, .external_lex_state = 3}, [903] = {.lex_state = 11, .external_lex_state = 3}, [904] = {.lex_state = 1, .external_lex_state = 3}, [905] = {.lex_state = 1, .external_lex_state = 3}, - [906] = {.lex_state = 1, .external_lex_state = 3}, - [907] = {.lex_state = 1, .external_lex_state = 3}, + [906] = {.lex_state = 11, .external_lex_state = 3}, + [907] = {.lex_state = 11, .external_lex_state = 3}, [908] = {.lex_state = 11, .external_lex_state = 3}, - [909] = {.lex_state = 11, .external_lex_state = 3}, + [909] = {.lex_state = 12, .external_lex_state = 3}, [910] = {.lex_state = 11, .external_lex_state = 3}, - [911] = {.lex_state = 1, .external_lex_state = 3}, + [911] = {.lex_state = 11, .external_lex_state = 3}, [912] = {.lex_state = 11, .external_lex_state = 3}, [913] = {.lex_state = 11, .external_lex_state = 3}, [914] = {.lex_state = 11, .external_lex_state = 3}, [915] = {.lex_state = 11, .external_lex_state = 3}, [916] = {.lex_state = 11, .external_lex_state = 3}, [917] = {.lex_state = 11, .external_lex_state = 3}, - [918] = {.lex_state = 11, .external_lex_state = 3}, - [919] = {.lex_state = 11, .external_lex_state = 3}, - [920] = {.lex_state = 12, .external_lex_state = 3}, + [918] = {.lex_state = 1, .external_lex_state = 3}, + [919] = {.lex_state = 1, .external_lex_state = 3}, + [920] = {.lex_state = 11, .external_lex_state = 3}, [921] = {.lex_state = 11, .external_lex_state = 3}, - [922] = {.lex_state = 11, .external_lex_state = 3}, - [923] = {.lex_state = 11, .external_lex_state = 3}, + [922] = {.lex_state = 1, .external_lex_state = 3}, + [923] = {.lex_state = 1, .external_lex_state = 3}, [924] = {.lex_state = 11, .external_lex_state = 3}, [925] = {.lex_state = 11, .external_lex_state = 3}, - [926] = {.lex_state = 1, .external_lex_state = 3}, + [926] = {.lex_state = 11, .external_lex_state = 3}, [927] = {.lex_state = 11, .external_lex_state = 3}, - [928] = {.lex_state = 11, .external_lex_state = 3}, - [929] = {.lex_state = 1, .external_lex_state = 3}, - [930] = {.lex_state = 5, .external_lex_state = 3}, - [931] = {.lex_state = 1, .external_lex_state = 3}, - [932] = {.lex_state = 1, .external_lex_state = 3}, + [928] = {.lex_state = 1, .external_lex_state = 3}, + [929] = {.lex_state = 11, .external_lex_state = 3}, + [930] = {.lex_state = 1, .external_lex_state = 3}, + [931] = {.lex_state = 11, .external_lex_state = 3}, + [932] = {.lex_state = 11, .external_lex_state = 3}, [933] = {.lex_state = 1, .external_lex_state = 3}, [934] = {.lex_state = 1, .external_lex_state = 3}, - [935] = {.lex_state = 1, .external_lex_state = 3}, + [935] = {.lex_state = 12, .external_lex_state = 3}, [936] = {.lex_state = 1, .external_lex_state = 3}, - [937] = {.lex_state = 1, .external_lex_state = 3}, - [938] = {.lex_state = 1, .external_lex_state = 3}, + [937] = {.lex_state = 5, .external_lex_state = 3}, + [938] = {.lex_state = 5, .external_lex_state = 3}, [939] = {.lex_state = 1, .external_lex_state = 3}, - [940] = {.lex_state = 12, .external_lex_state = 3}, - [941] = {.lex_state = 3, .external_lex_state = 3}, - [942] = {.lex_state = 5, .external_lex_state = 3}, + [940] = {.lex_state = 1, .external_lex_state = 3}, + [941] = {.lex_state = 1, .external_lex_state = 3}, + [942] = {.lex_state = 1, .external_lex_state = 3}, [943] = {.lex_state = 1, .external_lex_state = 3}, - [944] = {.lex_state = 55, .external_lex_state = 3}, + [944] = {.lex_state = 4, .external_lex_state = 3}, [945] = {.lex_state = 1, .external_lex_state = 3}, [946] = {.lex_state = 1, .external_lex_state = 3}, - [947] = {.lex_state = 1, .external_lex_state = 3}, - [948] = {.lex_state = 1, .external_lex_state = 3}, - [949] = {.lex_state = 1, .external_lex_state = 3}, - [950] = {.lex_state = 5, .external_lex_state = 3}, + [947] = {.lex_state = 55, .external_lex_state = 3}, + [948] = {.lex_state = 11, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, [951] = {.lex_state = 1, .external_lex_state = 3}, - [952] = {.lex_state = 11, .external_lex_state = 3}, - [953] = {.lex_state = 1, .external_lex_state = 3}, - [954] = {.lex_state = 55, .external_lex_state = 3}, - [955] = {.lex_state = 1, .external_lex_state = 3}, - [956] = {.lex_state = 11, .external_lex_state = 3}, - [957] = {.lex_state = 1, .external_lex_state = 3}, - [958] = {.lex_state = 5, .external_lex_state = 3}, - [959] = {.lex_state = 1, .external_lex_state = 3}, - [960] = {.lex_state = 13, .external_lex_state = 3}, - [961] = {.lex_state = 1, .external_lex_state = 3}, - [962] = {.lex_state = 13, .external_lex_state = 3}, - [963] = {.lex_state = 13, .external_lex_state = 3}, - [964] = {.lex_state = 11, .external_lex_state = 3}, + [952] = {.lex_state = 2, .external_lex_state = 3}, + [953] = {.lex_state = 5, .external_lex_state = 3}, + [954] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 5, .external_lex_state = 3}, + [956] = {.lex_state = 55, .external_lex_state = 3}, + [957] = {.lex_state = 11, .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 = 1, .external_lex_state = 3}, + [963] = {.lex_state = 1, .external_lex_state = 3}, + [964] = {.lex_state = 13, .external_lex_state = 3}, [965] = {.lex_state = 1, .external_lex_state = 3}, [966] = {.lex_state = 1, .external_lex_state = 3}, [967] = {.lex_state = 1, .external_lex_state = 3}, - [968] = {.lex_state = 1, .external_lex_state = 3}, - [969] = {.lex_state = 13, .external_lex_state = 3}, - [970] = {.lex_state = 3, .external_lex_state = 3}, + [968] = {.lex_state = 13, .external_lex_state = 3}, + [969] = {.lex_state = 12, .external_lex_state = 3}, + [970] = {.lex_state = 1, .external_lex_state = 3}, [971] = {.lex_state = 1, .external_lex_state = 3}, [972] = {.lex_state = 1, .external_lex_state = 3}, - [973] = {.lex_state = 1, .external_lex_state = 3}, - [974] = {.lex_state = 0, .external_lex_state = 3}, - [975] = {.lex_state = 13, .external_lex_state = 3}, + [973] = {.lex_state = 13, .external_lex_state = 3}, + [974] = {.lex_state = 13, .external_lex_state = 3}, + [975] = {.lex_state = 0, .external_lex_state = 3}, [976] = {.lex_state = 13, .external_lex_state = 3}, - [977] = {.lex_state = 1, .external_lex_state = 3}, - [978] = {.lex_state = 13, .external_lex_state = 3}, - [979] = {.lex_state = 12, .external_lex_state = 3}, - [980] = {.lex_state = 12, .external_lex_state = 3}, - [981] = {.lex_state = 3, .external_lex_state = 3}, - [982] = {.lex_state = 0, .external_lex_state = 3}, - [983] = {.lex_state = 1, .external_lex_state = 3}, + [977] = {.lex_state = 13, .external_lex_state = 3}, + [978] = {.lex_state = 1, .external_lex_state = 3}, + [979] = {.lex_state = 1, .external_lex_state = 3}, + [980] = {.lex_state = 1, .external_lex_state = 3}, + [981] = {.lex_state = 1, .external_lex_state = 3}, + [982] = {.lex_state = 1, .external_lex_state = 3}, + [983] = {.lex_state = 12, .external_lex_state = 3}, [984] = {.lex_state = 1, .external_lex_state = 3}, - [985] = {.lex_state = 55, .external_lex_state = 3}, - [986] = {.lex_state = 1, .external_lex_state = 3}, - [987] = {.lex_state = 12, .external_lex_state = 3}, - [988] = {.lex_state = 1, .external_lex_state = 3}, + [985] = {.lex_state = 1, .external_lex_state = 3}, + [986] = {.lex_state = 11, .external_lex_state = 3}, + [987] = {.lex_state = 13, .external_lex_state = 3}, + [988] = {.lex_state = 0, .external_lex_state = 3}, [989] = {.lex_state = 1, .external_lex_state = 3}, [990] = {.lex_state = 1, .external_lex_state = 3}, - [991] = {.lex_state = 1, .external_lex_state = 3}, - [992] = {.lex_state = 12, .external_lex_state = 3}, - [993] = {.lex_state = 1, .external_lex_state = 3}, + [991] = {.lex_state = 55, .external_lex_state = 3}, + [992] = {.lex_state = 1, .external_lex_state = 3}, + [993] = {.lex_state = 55, .external_lex_state = 3}, [994] = {.lex_state = 1, .external_lex_state = 3}, [995] = {.lex_state = 1, .external_lex_state = 3}, [996] = {.lex_state = 1, .external_lex_state = 3}, - [997] = {.lex_state = 12, .external_lex_state = 3}, - [998] = {.lex_state = 55, .external_lex_state = 3}, - [999] = {.lex_state = 1, .external_lex_state = 3}, - [1000] = {.lex_state = 12, .external_lex_state = 3}, + [997] = {.lex_state = 1, .external_lex_state = 3}, + [998] = {.lex_state = 12, .external_lex_state = 3}, + [999] = {.lex_state = 12, .external_lex_state = 3}, + [1000] = {.lex_state = 1, .external_lex_state = 3}, [1001] = {.lex_state = 1, .external_lex_state = 3}, [1002] = {.lex_state = 1, .external_lex_state = 3}, - [1003] = {.lex_state = 1, .external_lex_state = 3}, - [1004] = {.lex_state = 1, .external_lex_state = 3}, - [1005] = {.lex_state = 55, .external_lex_state = 3}, + [1003] = {.lex_state = 12, .external_lex_state = 3}, + [1004] = {.lex_state = 12, .external_lex_state = 3}, + [1005] = {.lex_state = 1, .external_lex_state = 3}, [1006] = {.lex_state = 1, .external_lex_state = 3}, [1007] = {.lex_state = 1, .external_lex_state = 3}, - [1008] = {.lex_state = 5, .external_lex_state = 3}, + [1008] = {.lex_state = 1, .external_lex_state = 3}, [1009] = {.lex_state = 1, .external_lex_state = 3}, [1010] = {.lex_state = 1, .external_lex_state = 3}, [1011] = {.lex_state = 1, .external_lex_state = 3}, [1012] = {.lex_state = 1, .external_lex_state = 3}, - [1013] = {.lex_state = 1, .external_lex_state = 3}, + [1013] = {.lex_state = 55, .external_lex_state = 3}, [1014] = {.lex_state = 1, .external_lex_state = 3}, [1015] = {.lex_state = 1, .external_lex_state = 3}, - [1016] = {.lex_state = 1, .external_lex_state = 3}, - [1017] = {.lex_state = 55, .external_lex_state = 3}, + [1016] = {.lex_state = 5, .external_lex_state = 3}, + [1017] = {.lex_state = 1, .external_lex_state = 3}, [1018] = {.lex_state = 1, .external_lex_state = 3}, [1019] = {.lex_state = 1, .external_lex_state = 3}, [1020] = {.lex_state = 1, .external_lex_state = 3}, @@ -10476,130 +10493,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 1, .external_lex_state = 3}, [1023] = {.lex_state = 1, .external_lex_state = 3}, [1024] = {.lex_state = 1, .external_lex_state = 3}, - [1025] = {.lex_state = 12, .external_lex_state = 3}, + [1025] = {.lex_state = 1, .external_lex_state = 3}, [1026] = {.lex_state = 1, .external_lex_state = 3}, [1027] = {.lex_state = 1, .external_lex_state = 3}, - [1028] = {.lex_state = 1, .external_lex_state = 3}, - [1029] = {.lex_state = 55, .external_lex_state = 3}, + [1028] = {.lex_state = 55, .external_lex_state = 3}, + [1029] = {.lex_state = 0, .external_lex_state = 3}, [1030] = {.lex_state = 1, .external_lex_state = 3}, [1031] = {.lex_state = 1, .external_lex_state = 3}, - [1032] = {.lex_state = 13, .external_lex_state = 3}, - [1033] = {.lex_state = 1, .external_lex_state = 3}, + [1032] = {.lex_state = 1, .external_lex_state = 3}, + [1033] = {.lex_state = 55, .external_lex_state = 3}, [1034] = {.lex_state = 1, .external_lex_state = 3}, - [1035] = {.lex_state = 1, .external_lex_state = 3}, - [1036] = {.lex_state = 1, .external_lex_state = 3}, - [1037] = {.lex_state = 1, .external_lex_state = 3}, + [1035] = {.lex_state = 55, .external_lex_state = 3}, + [1036] = {.lex_state = 10, .external_lex_state = 3}, + [1037] = {.lex_state = 55, .external_lex_state = 3}, [1038] = {.lex_state = 1, .external_lex_state = 3}, - [1039] = {.lex_state = 10, .external_lex_state = 3}, - [1040] = {.lex_state = 1, .external_lex_state = 3}, + [1039] = {.lex_state = 55, .external_lex_state = 3}, + [1040] = {.lex_state = 55, .external_lex_state = 3}, [1041] = {.lex_state = 1, .external_lex_state = 3}, [1042] = {.lex_state = 1, .external_lex_state = 3}, [1043] = {.lex_state = 1, .external_lex_state = 3}, [1044] = {.lex_state = 1, .external_lex_state = 3}, - [1045] = {.lex_state = 1, .external_lex_state = 3}, + [1045] = {.lex_state = 10, .external_lex_state = 3}, [1046] = {.lex_state = 55, .external_lex_state = 3}, - [1047] = {.lex_state = 55, .external_lex_state = 3}, + [1047] = {.lex_state = 10, .external_lex_state = 3}, [1048] = {.lex_state = 1, .external_lex_state = 3}, - [1049] = {.lex_state = 10, .external_lex_state = 3}, - [1050] = {.lex_state = 1, .external_lex_state = 3}, - [1051] = {.lex_state = 55, .external_lex_state = 3}, + [1049] = {.lex_state = 55, .external_lex_state = 3}, + [1050] = {.lex_state = 55, .external_lex_state = 3}, + [1051] = {.lex_state = 1, .external_lex_state = 3}, [1052] = {.lex_state = 1, .external_lex_state = 3}, [1053] = {.lex_state = 1, .external_lex_state = 3}, [1054] = {.lex_state = 1, .external_lex_state = 3}, [1055] = {.lex_state = 1, .external_lex_state = 3}, - [1056] = {.lex_state = 10, .external_lex_state = 3}, + [1056] = {.lex_state = 1, .external_lex_state = 3}, [1057] = {.lex_state = 1, .external_lex_state = 3}, - [1058] = {.lex_state = 1, .external_lex_state = 3}, + [1058] = {.lex_state = 10, .external_lex_state = 3}, [1059] = {.lex_state = 1, .external_lex_state = 3}, [1060] = {.lex_state = 1, .external_lex_state = 3}, [1061] = {.lex_state = 1, .external_lex_state = 3}, [1062] = {.lex_state = 1, .external_lex_state = 3}, - [1063] = {.lex_state = 1, .external_lex_state = 3}, + [1063] = {.lex_state = 55, .external_lex_state = 3}, [1064] = {.lex_state = 1, .external_lex_state = 3}, - [1065] = {.lex_state = 0, .external_lex_state = 3}, - [1066] = {.lex_state = 55, .external_lex_state = 3}, + [1065] = {.lex_state = 1, .external_lex_state = 3}, + [1066] = {.lex_state = 1, .external_lex_state = 3}, [1067] = {.lex_state = 1, .external_lex_state = 3}, - [1068] = {.lex_state = 55, .external_lex_state = 3}, + [1068] = {.lex_state = 1, .external_lex_state = 3}, [1069] = {.lex_state = 1, .external_lex_state = 3}, [1070] = {.lex_state = 1, .external_lex_state = 3}, - [1071] = {.lex_state = 55, .external_lex_state = 3}, + [1071] = {.lex_state = 1, .external_lex_state = 3}, [1072] = {.lex_state = 55, .external_lex_state = 3}, - [1073] = {.lex_state = 55, .external_lex_state = 3}, + [1073] = {.lex_state = 1, .external_lex_state = 3}, [1074] = {.lex_state = 1, .external_lex_state = 3}, [1075] = {.lex_state = 1, .external_lex_state = 3}, - [1076] = {.lex_state = 55, .external_lex_state = 3}, - [1077] = {.lex_state = 1, .external_lex_state = 3}, - [1078] = {.lex_state = 10, .external_lex_state = 3}, + [1076] = {.lex_state = 1, .external_lex_state = 3}, + [1077] = {.lex_state = 13, .external_lex_state = 3}, + [1078] = {.lex_state = 1, .external_lex_state = 3}, [1079] = {.lex_state = 1, .external_lex_state = 3}, - [1080] = {.lex_state = 55, .external_lex_state = 3}, - [1081] = {.lex_state = 55, .external_lex_state = 3}, + [1080] = {.lex_state = 1, .external_lex_state = 3}, + [1081] = {.lex_state = 1, .external_lex_state = 3}, [1082] = {.lex_state = 1, .external_lex_state = 3}, [1083] = {.lex_state = 1, .external_lex_state = 3}, - [1084] = {.lex_state = 55, .external_lex_state = 3}, - [1085] = {.lex_state = 55, .external_lex_state = 3}, + [1084] = {.lex_state = 1, .external_lex_state = 3}, + [1085] = {.lex_state = 1, .external_lex_state = 3}, [1086] = {.lex_state = 1, .external_lex_state = 3}, [1087] = {.lex_state = 1, .external_lex_state = 3}, - [1088] = {.lex_state = 10, .external_lex_state = 3}, - [1089] = {.lex_state = 55, .external_lex_state = 3}, - [1090] = {.lex_state = 1, .external_lex_state = 3}, - [1091] = {.lex_state = 1, .external_lex_state = 3}, - [1092] = {.lex_state = 1, .external_lex_state = 3}, + [1088] = {.lex_state = 55, .external_lex_state = 3}, + [1089] = {.lex_state = 10, .external_lex_state = 3}, + [1090] = {.lex_state = 55, .external_lex_state = 3}, + [1091] = {.lex_state = 10, .external_lex_state = 3}, + [1092] = {.lex_state = 12, .external_lex_state = 3}, [1093] = {.lex_state = 55, .external_lex_state = 3}, - [1094] = {.lex_state = 55, .external_lex_state = 3}, + [1094] = {.lex_state = 1, .external_lex_state = 3}, [1095] = {.lex_state = 55, .external_lex_state = 3}, - [1096] = {.lex_state = 10, .external_lex_state = 3}, + [1096] = {.lex_state = 55, .external_lex_state = 3}, [1097] = {.lex_state = 55, .external_lex_state = 3}, [1098] = {.lex_state = 1, .external_lex_state = 3}, - [1099] = {.lex_state = 55, .external_lex_state = 3}, + [1099] = {.lex_state = 1, .external_lex_state = 3}, [1100] = {.lex_state = 1, .external_lex_state = 3}, - [1101] = {.lex_state = 10, .external_lex_state = 3}, - [1102] = {.lex_state = 1, .external_lex_state = 3}, - [1103] = {.lex_state = 1, .external_lex_state = 3}, + [1101] = {.lex_state = 1, .external_lex_state = 3}, + [1102] = {.lex_state = 55, .external_lex_state = 3}, + [1103] = {.lex_state = 55, .external_lex_state = 3}, [1104] = {.lex_state = 1, .external_lex_state = 3}, - [1105] = {.lex_state = 1, .external_lex_state = 3}, - [1106] = {.lex_state = 55, .external_lex_state = 3}, - [1107] = {.lex_state = 1, .external_lex_state = 3}, - [1108] = {.lex_state = 1, .external_lex_state = 3}, + [1105] = {.lex_state = 55, .external_lex_state = 3}, + [1106] = {.lex_state = 1, .external_lex_state = 3}, + [1107] = {.lex_state = 55, .external_lex_state = 3}, + [1108] = {.lex_state = 55, .external_lex_state = 3}, [1109] = {.lex_state = 1, .external_lex_state = 3}, [1110] = {.lex_state = 1, .external_lex_state = 3}, [1111] = {.lex_state = 1, .external_lex_state = 3}, [1112] = {.lex_state = 1, .external_lex_state = 3}, - [1113] = {.lex_state = 0, .external_lex_state = 3}, - [1114] = {.lex_state = 0, .external_lex_state = 3}, - [1115] = {.lex_state = 11, .external_lex_state = 3}, - [1116] = {.lex_state = 0, .external_lex_state = 3}, - [1117] = {.lex_state = 11, .external_lex_state = 3}, + [1113] = {.lex_state = 1, .external_lex_state = 3}, + [1114] = {.lex_state = 10, .external_lex_state = 3}, + [1115] = {.lex_state = 1, .external_lex_state = 3}, + [1116] = {.lex_state = 1, .external_lex_state = 3}, + [1117] = {.lex_state = 4, .external_lex_state = 3}, [1118] = {.lex_state = 0, .external_lex_state = 3}, [1119] = {.lex_state = 0, .external_lex_state = 3}, [1120] = {.lex_state = 55, .external_lex_state = 3}, - [1121] = {.lex_state = 0, .external_lex_state = 3}, - [1122] = {.lex_state = 55, .external_lex_state = 3}, - [1123] = {.lex_state = 55, .external_lex_state = 3}, - [1124] = {.lex_state = 1, .external_lex_state = 3}, - [1125] = {.lex_state = 1, .external_lex_state = 3}, + [1121] = {.lex_state = 1, .external_lex_state = 3}, + [1122] = {.lex_state = 0, .external_lex_state = 3}, + [1123] = {.lex_state = 0, .external_lex_state = 3}, + [1124] = {.lex_state = 0, .external_lex_state = 3}, + [1125] = {.lex_state = 0, .external_lex_state = 3}, [1126] = {.lex_state = 0, .external_lex_state = 3}, - [1127] = {.lex_state = 55, .external_lex_state = 3}, + [1127] = {.lex_state = 0, .external_lex_state = 3}, [1128] = {.lex_state = 55, .external_lex_state = 3}, [1129] = {.lex_state = 0, .external_lex_state = 3}, [1130] = {.lex_state = 0, .external_lex_state = 3}, - [1131] = {.lex_state = 0, .external_lex_state = 3}, - [1132] = {.lex_state = 5, .external_lex_state = 3}, - [1133] = {.lex_state = 0, .external_lex_state = 3}, - [1134] = {.lex_state = 55, .external_lex_state = 3}, + [1131] = {.lex_state = 55, .external_lex_state = 3}, + [1132] = {.lex_state = 0, .external_lex_state = 3}, + [1133] = {.lex_state = 55, .external_lex_state = 3}, + [1134] = {.lex_state = 0, .external_lex_state = 3}, [1135] = {.lex_state = 11, .external_lex_state = 3}, [1136] = {.lex_state = 55, .external_lex_state = 3}, [1137] = {.lex_state = 11, .external_lex_state = 3}, [1138] = {.lex_state = 55, .external_lex_state = 3}, - [1139] = {.lex_state = 11, .external_lex_state = 3}, + [1139] = {.lex_state = 0, .external_lex_state = 3}, [1140] = {.lex_state = 55, .external_lex_state = 3}, - [1141] = {.lex_state = 0, .external_lex_state = 3}, + [1141] = {.lex_state = 11, .external_lex_state = 3}, [1142] = {.lex_state = 0, .external_lex_state = 3}, [1143] = {.lex_state = 0, .external_lex_state = 3}, [1144] = {.lex_state = 0, .external_lex_state = 3}, - [1145] = {.lex_state = 1, .external_lex_state = 3}, - [1146] = {.lex_state = 0, .external_lex_state = 3}, - [1147] = {.lex_state = 1, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 3}, + [1145] = {.lex_state = 55, .external_lex_state = 3}, + [1146] = {.lex_state = 11, .external_lex_state = 3}, + [1147] = {.lex_state = 0, .external_lex_state = 3}, + [1148] = {.lex_state = 55, .external_lex_state = 3}, [1149] = {.lex_state = 0, .external_lex_state = 3}, [1150] = {.lex_state = 0, .external_lex_state = 3}, [1151] = {.lex_state = 55, .external_lex_state = 3}, @@ -10607,344 +10624,348 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1153] = {.lex_state = 55, .external_lex_state = 3}, [1154] = {.lex_state = 0, .external_lex_state = 3}, [1155] = {.lex_state = 0, .external_lex_state = 3}, - [1156] = {.lex_state = 55, .external_lex_state = 3}, + [1156] = {.lex_state = 0, .external_lex_state = 3}, [1157] = {.lex_state = 0, .external_lex_state = 3}, - [1158] = {.lex_state = 0, .external_lex_state = 3}, + [1158] = {.lex_state = 5, .external_lex_state = 3}, [1159] = {.lex_state = 55, .external_lex_state = 3}, - [1160] = {.lex_state = 55, .external_lex_state = 3}, - [1161] = {.lex_state = 55, .external_lex_state = 3}, + [1160] = {.lex_state = 0, .external_lex_state = 3}, + [1161] = {.lex_state = 0, .external_lex_state = 3}, [1162] = {.lex_state = 55, .external_lex_state = 3}, [1163] = {.lex_state = 0, .external_lex_state = 3}, [1164] = {.lex_state = 0, .external_lex_state = 3}, - [1165] = {.lex_state = 11, .external_lex_state = 3}, - [1166] = {.lex_state = 0, .external_lex_state = 3}, + [1165] = {.lex_state = 0, .external_lex_state = 3}, + [1166] = {.lex_state = 11, .external_lex_state = 3}, [1167] = {.lex_state = 0, .external_lex_state = 3}, [1168] = {.lex_state = 0, .external_lex_state = 3}, - [1169] = {.lex_state = 0, .external_lex_state = 3}, + [1169] = {.lex_state = 5, .external_lex_state = 3}, [1170] = {.lex_state = 55, .external_lex_state = 3}, - [1171] = {.lex_state = 0, .external_lex_state = 3}, - [1172] = {.lex_state = 55, .external_lex_state = 3}, + [1171] = {.lex_state = 55, .external_lex_state = 3}, + [1172] = {.lex_state = 0, .external_lex_state = 3}, [1173] = {.lex_state = 55, .external_lex_state = 3}, - [1174] = {.lex_state = 55, .external_lex_state = 3}, + [1174] = {.lex_state = 0, .external_lex_state = 3}, [1175] = {.lex_state = 0, .external_lex_state = 3}, [1176] = {.lex_state = 0, .external_lex_state = 3}, [1177] = {.lex_state = 11, .external_lex_state = 3}, - [1178] = {.lex_state = 0, .external_lex_state = 3}, - [1179] = {.lex_state = 0, .external_lex_state = 3}, + [1178] = {.lex_state = 55, .external_lex_state = 3}, + [1179] = {.lex_state = 11, .external_lex_state = 3}, [1180] = {.lex_state = 1, .external_lex_state = 3}, - [1181] = {.lex_state = 11, .external_lex_state = 3}, + [1181] = {.lex_state = 0, .external_lex_state = 3}, [1182] = {.lex_state = 55, .external_lex_state = 3}, - [1183] = {.lex_state = 3, .external_lex_state = 3}, - [1184] = {.lex_state = 55, .external_lex_state = 3}, + [1183] = {.lex_state = 55, .external_lex_state = 3}, + [1184] = {.lex_state = 1, .external_lex_state = 3}, [1185] = {.lex_state = 0, .external_lex_state = 3}, [1186] = {.lex_state = 0, .external_lex_state = 3}, [1187] = {.lex_state = 55, .external_lex_state = 3}, [1188] = {.lex_state = 0, .external_lex_state = 3}, - [1189] = {.lex_state = 11, .external_lex_state = 3}, - [1190] = {.lex_state = 0, .external_lex_state = 3}, + [1189] = {.lex_state = 55, .external_lex_state = 3}, + [1190] = {.lex_state = 1, .external_lex_state = 3}, [1191] = {.lex_state = 0, .external_lex_state = 3}, - [1192] = {.lex_state = 55, .external_lex_state = 3}, - [1193] = {.lex_state = 0, .external_lex_state = 3}, - [1194] = {.lex_state = 55, .external_lex_state = 3}, + [1192] = {.lex_state = 0, .external_lex_state = 3}, + [1193] = {.lex_state = 1, .external_lex_state = 3}, + [1194] = {.lex_state = 0, .external_lex_state = 3}, [1195] = {.lex_state = 55, .external_lex_state = 3}, [1196] = {.lex_state = 0, .external_lex_state = 3}, - [1197] = {.lex_state = 55, .external_lex_state = 3}, - [1198] = {.lex_state = 11, .external_lex_state = 3}, - [1199] = {.lex_state = 0, .external_lex_state = 3}, + [1197] = {.lex_state = 0, .external_lex_state = 3}, + [1198] = {.lex_state = 0, .external_lex_state = 3}, + [1199] = {.lex_state = 1, .external_lex_state = 3}, [1200] = {.lex_state = 0, .external_lex_state = 3}, [1201] = {.lex_state = 0, .external_lex_state = 3}, - [1202] = {.lex_state = 0, .external_lex_state = 3}, - [1203] = {.lex_state = 55, .external_lex_state = 3}, - [1204] = {.lex_state = 55, .external_lex_state = 3}, + [1202] = {.lex_state = 11, .external_lex_state = 3}, + [1203] = {.lex_state = 0, .external_lex_state = 3}, + [1204] = {.lex_state = 0, .external_lex_state = 3}, [1205] = {.lex_state = 0, .external_lex_state = 3}, [1206] = {.lex_state = 0, .external_lex_state = 3}, - [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1207] = {.lex_state = 0, .external_lex_state = 3}, [1208] = {.lex_state = 0, .external_lex_state = 3}, [1209] = {.lex_state = 0, .external_lex_state = 3}, - [1210] = {.lex_state = 55, .external_lex_state = 3}, - [1211] = {.lex_state = 0, .external_lex_state = 3}, - [1212] = {.lex_state = 0, .external_lex_state = 3}, + [1210] = {.lex_state = 0, .external_lex_state = 3}, + [1211] = {.lex_state = 4, .external_lex_state = 3}, + [1212] = {.lex_state = 55, .external_lex_state = 3}, [1213] = {.lex_state = 0, .external_lex_state = 3}, - [1214] = {.lex_state = 0, .external_lex_state = 3}, - [1215] = {.lex_state = 11, .external_lex_state = 3}, - [1216] = {.lex_state = 1, .external_lex_state = 3}, - [1217] = {.lex_state = 55, .external_lex_state = 3}, - [1218] = {.lex_state = 0, .external_lex_state = 3}, + [1214] = {.lex_state = 55, .external_lex_state = 3}, + [1215] = {.lex_state = 0, .external_lex_state = 3}, + [1216] = {.lex_state = 55, .external_lex_state = 3}, + [1217] = {.lex_state = 0, .external_lex_state = 3}, + [1218] = {.lex_state = 55, .external_lex_state = 3}, [1219] = {.lex_state = 0, .external_lex_state = 3}, - [1220] = {.lex_state = 11, .external_lex_state = 3}, + [1220] = {.lex_state = 0, .external_lex_state = 3}, [1221] = {.lex_state = 0, .external_lex_state = 3}, [1222] = {.lex_state = 0, .external_lex_state = 3}, - [1223] = {.lex_state = 0, .external_lex_state = 3}, - [1224] = {.lex_state = 0, .external_lex_state = 3}, - [1225] = {.lex_state = 0, .external_lex_state = 3}, + [1223] = {.lex_state = 55, .external_lex_state = 3}, + [1224] = {.lex_state = 5, .external_lex_state = 3}, + [1225] = {.lex_state = 55, .external_lex_state = 3}, [1226] = {.lex_state = 0, .external_lex_state = 3}, - [1227] = {.lex_state = 0, .external_lex_state = 3}, + [1227] = {.lex_state = 55, .external_lex_state = 3}, [1228] = {.lex_state = 0, .external_lex_state = 3}, - [1229] = {.lex_state = 0, .external_lex_state = 3}, - [1230] = {.lex_state = 0, .external_lex_state = 3}, - [1231] = {.lex_state = 0, .external_lex_state = 3}, + [1229] = {.lex_state = 55, .external_lex_state = 3}, + [1230] = {.lex_state = 55, .external_lex_state = 3}, + [1231] = {.lex_state = 55, .external_lex_state = 3}, [1232] = {.lex_state = 0, .external_lex_state = 3}, - [1233] = {.lex_state = 0, .external_lex_state = 3}, + [1233] = {.lex_state = 55, .external_lex_state = 3}, [1234] = {.lex_state = 55, .external_lex_state = 3}, - [1235] = {.lex_state = 55, .external_lex_state = 3}, + [1235] = {.lex_state = 11, .external_lex_state = 3}, [1236] = {.lex_state = 0, .external_lex_state = 3}, - [1237] = {.lex_state = 5, .external_lex_state = 3}, + [1237] = {.lex_state = 55, .external_lex_state = 3}, [1238] = {.lex_state = 0, .external_lex_state = 3}, [1239] = {.lex_state = 0, .external_lex_state = 3}, - [1240] = {.lex_state = 0, .external_lex_state = 3}, + [1240] = {.lex_state = 55, .external_lex_state = 3}, [1241] = {.lex_state = 0, .external_lex_state = 3}, [1242] = {.lex_state = 0, .external_lex_state = 3}, - [1243] = {.lex_state = 55, .external_lex_state = 3}, + [1243] = {.lex_state = 0, .external_lex_state = 3}, [1244] = {.lex_state = 0, .external_lex_state = 3}, [1245] = {.lex_state = 0, .external_lex_state = 3}, [1246] = {.lex_state = 0, .external_lex_state = 3}, - [1247] = {.lex_state = 55, .external_lex_state = 3}, + [1247] = {.lex_state = 0, .external_lex_state = 3}, [1248] = {.lex_state = 0, .external_lex_state = 3}, [1249] = {.lex_state = 0, .external_lex_state = 3}, - [1250] = {.lex_state = 55, .external_lex_state = 3}, + [1250] = {.lex_state = 0, .external_lex_state = 3}, [1251] = {.lex_state = 0, .external_lex_state = 3}, - [1252] = {.lex_state = 55, .external_lex_state = 3}, + [1252] = {.lex_state = 0, .external_lex_state = 3}, [1253] = {.lex_state = 0, .external_lex_state = 3}, [1254] = {.lex_state = 0, .external_lex_state = 3}, - [1255] = {.lex_state = 0, .external_lex_state = 3}, - [1256] = {.lex_state = 0, .external_lex_state = 3}, - [1257] = {.lex_state = 0, .external_lex_state = 3}, - [1258] = {.lex_state = 0, .external_lex_state = 3}, + [1255] = {.lex_state = 55, .external_lex_state = 3}, + [1256] = {.lex_state = 11, .external_lex_state = 3}, + [1257] = {.lex_state = 11, .external_lex_state = 3}, + [1258] = {.lex_state = 11, .external_lex_state = 3}, [1259] = {.lex_state = 55, .external_lex_state = 3}, [1260] = {.lex_state = 55, .external_lex_state = 3}, [1261] = {.lex_state = 0, .external_lex_state = 3}, - [1262] = {.lex_state = 55, .external_lex_state = 3}, + [1262] = {.lex_state = 0, .external_lex_state = 3}, [1263] = {.lex_state = 55, .external_lex_state = 3}, - [1264] = {.lex_state = 1, .external_lex_state = 3}, + [1264] = {.lex_state = 55, .external_lex_state = 3}, [1265] = {.lex_state = 0, .external_lex_state = 3}, [1266] = {.lex_state = 0, .external_lex_state = 3}, - [1267] = {.lex_state = 0, .external_lex_state = 3}, + [1267] = {.lex_state = 55, .external_lex_state = 3}, [1268] = {.lex_state = 0, .external_lex_state = 3}, - [1269] = {.lex_state = 0, .external_lex_state = 3}, + [1269] = {.lex_state = 55, .external_lex_state = 3}, [1270] = {.lex_state = 0, .external_lex_state = 3}, - [1271] = {.lex_state = 1, .external_lex_state = 3}, + [1271] = {.lex_state = 55, .external_lex_state = 3}, [1272] = {.lex_state = 55, .external_lex_state = 3}, - [1273] = {.lex_state = 55, .external_lex_state = 3}, - [1274] = {.lex_state = 55, .external_lex_state = 3}, + [1273] = {.lex_state = 0, .external_lex_state = 3}, + [1274] = {.lex_state = 1, .external_lex_state = 3}, [1275] = {.lex_state = 0, .external_lex_state = 3}, [1276] = {.lex_state = 0, .external_lex_state = 3}, - [1277] = {.lex_state = 55, .external_lex_state = 3}, - [1278] = {.lex_state = 55, .external_lex_state = 3}, - [1279] = {.lex_state = 0, .external_lex_state = 3}, - [1280] = {.lex_state = 55, .external_lex_state = 3}, - [1281] = {.lex_state = 0, .external_lex_state = 3}, - [1282] = {.lex_state = 1, .external_lex_state = 3}, - [1283] = {.lex_state = 0, .external_lex_state = 3}, - [1284] = {.lex_state = 55, .external_lex_state = 3}, - [1285] = {.lex_state = 1, .external_lex_state = 3}, - [1286] = {.lex_state = 55, .external_lex_state = 3}, + [1277] = {.lex_state = 0, .external_lex_state = 3}, + [1278] = {.lex_state = 1, .external_lex_state = 3}, + [1279] = {.lex_state = 55, .external_lex_state = 3}, + [1280] = {.lex_state = 0, .external_lex_state = 3}, + [1281] = {.lex_state = 1, .external_lex_state = 3}, + [1282] = {.lex_state = 55, .external_lex_state = 3}, + [1283] = {.lex_state = 55, .external_lex_state = 3}, + [1284] = {.lex_state = 0, .external_lex_state = 4}, + [1285] = {.lex_state = 0, .external_lex_state = 3}, + [1286] = {.lex_state = 1, .external_lex_state = 3}, [1287] = {.lex_state = 0, .external_lex_state = 3}, [1288] = {.lex_state = 0, .external_lex_state = 3}, - [1289] = {.lex_state = 0, .external_lex_state = 4}, + [1289] = {.lex_state = 0, .external_lex_state = 3}, [1290] = {.lex_state = 55, .external_lex_state = 3}, - [1291] = {.lex_state = 0, .external_lex_state = 3}, + [1291] = {.lex_state = 5, .external_lex_state = 3}, [1292] = {.lex_state = 0, .external_lex_state = 3}, [1293] = {.lex_state = 55, .external_lex_state = 3}, - [1294] = {.lex_state = 0, .external_lex_state = 3}, + [1294] = {.lex_state = 55, .external_lex_state = 3}, [1295] = {.lex_state = 0, .external_lex_state = 3}, [1296] = {.lex_state = 0, .external_lex_state = 3}, [1297] = {.lex_state = 0, .external_lex_state = 3}, - [1298] = {.lex_state = 55, .external_lex_state = 3}, - [1299] = {.lex_state = 5, .external_lex_state = 3}, - [1300] = {.lex_state = 1, .external_lex_state = 3}, + [1298] = {.lex_state = 0, .external_lex_state = 3}, + [1299] = {.lex_state = 55, .external_lex_state = 3}, + [1300] = {.lex_state = 0, .external_lex_state = 3}, [1301] = {.lex_state = 0, .external_lex_state = 3}, - [1302] = {.lex_state = 55, .external_lex_state = 3}, - [1303] = {.lex_state = 0, .external_lex_state = 3}, - [1304] = {.lex_state = 0, .external_lex_state = 3}, + [1302] = {.lex_state = 0, .external_lex_state = 3}, + [1303] = {.lex_state = 55, .external_lex_state = 3}, + [1304] = {.lex_state = 55, .external_lex_state = 3}, [1305] = {.lex_state = 55, .external_lex_state = 3}, - [1306] = {.lex_state = 55, .external_lex_state = 3}, - [1307] = {.lex_state = 55, .external_lex_state = 3}, - [1308] = {.lex_state = 1, .external_lex_state = 3}, - [1309] = {.lex_state = 0, .external_lex_state = 3}, - [1310] = {.lex_state = 55, .external_lex_state = 3}, - [1311] = {.lex_state = 0, .external_lex_state = 3}, - [1312] = {.lex_state = 5, .external_lex_state = 3}, - [1313] = {.lex_state = 0, .external_lex_state = 3}, + [1306] = {.lex_state = 0, .external_lex_state = 3}, + [1307] = {.lex_state = 0, .external_lex_state = 3}, + [1308] = {.lex_state = 0, .external_lex_state = 3}, + [1309] = {.lex_state = 11, .external_lex_state = 3}, + [1310] = {.lex_state = 0, .external_lex_state = 3}, + [1311] = {.lex_state = 5, .external_lex_state = 3}, + [1312] = {.lex_state = 0, .external_lex_state = 3}, + [1313] = {.lex_state = 1, .external_lex_state = 3}, [1314] = {.lex_state = 0, .external_lex_state = 3}, - [1315] = {.lex_state = 55, .external_lex_state = 3}, + [1315] = {.lex_state = 0, .external_lex_state = 3}, [1316] = {.lex_state = 0, .external_lex_state = 3}, - [1317] = {.lex_state = 0, .external_lex_state = 3}, + [1317] = {.lex_state = 1, .external_lex_state = 3}, [1318] = {.lex_state = 55, .external_lex_state = 3}, - [1319] = {.lex_state = 0, .external_lex_state = 3}, - [1320] = {.lex_state = 0, .external_lex_state = 3}, - [1321] = {.lex_state = 0, .external_lex_state = 3}, + [1319] = {.lex_state = 55, .external_lex_state = 3}, + [1320] = {.lex_state = 55, .external_lex_state = 3}, + [1321] = {.lex_state = 55, .external_lex_state = 3}, [1322] = {.lex_state = 55, .external_lex_state = 3}, - [1323] = {.lex_state = 55, .external_lex_state = 3}, - [1324] = {.lex_state = 55, .external_lex_state = 3}, - [1325] = {.lex_state = 55, .external_lex_state = 3}, - [1326] = {.lex_state = 55, .external_lex_state = 3}, - [1327] = {.lex_state = 55, .external_lex_state = 3}, + [1323] = {.lex_state = 0, .external_lex_state = 3}, + [1324] = {.lex_state = 0, .external_lex_state = 3}, + [1325] = {.lex_state = 0, .external_lex_state = 3}, + [1326] = {.lex_state = 0, .external_lex_state = 3}, + [1327] = {.lex_state = 0, .external_lex_state = 3}, [1328] = {.lex_state = 55, .external_lex_state = 3}, - [1329] = {.lex_state = 0, .external_lex_state = 3}, + [1329] = {.lex_state = 55, .external_lex_state = 3}, [1330] = {.lex_state = 0, .external_lex_state = 3}, - [1331] = {.lex_state = 0, .external_lex_state = 3}, - [1332] = {.lex_state = 11, .external_lex_state = 3}, + [1331] = {.lex_state = 55, .external_lex_state = 3}, + [1332] = {.lex_state = 55, .external_lex_state = 3}, [1333] = {.lex_state = 0, .external_lex_state = 3}, - [1334] = {.lex_state = 1, .external_lex_state = 3}, - [1335] = {.lex_state = 1, .external_lex_state = 3}, - [1336] = {.lex_state = 0, .external_lex_state = 3}, + [1334] = {.lex_state = 55, .external_lex_state = 3}, + [1335] = {.lex_state = 55, .external_lex_state = 3}, + [1336] = {.lex_state = 1, .external_lex_state = 3}, [1337] = {.lex_state = 0, .external_lex_state = 3}, [1338] = {.lex_state = 0, .external_lex_state = 3}, - [1339] = {.lex_state = 1, .external_lex_state = 3}, - [1340] = {.lex_state = 0, .external_lex_state = 3}, - [1341] = {.lex_state = 0, .external_lex_state = 3}, + [1339] = {.lex_state = 55, .external_lex_state = 3}, + [1340] = {.lex_state = 55, .external_lex_state = 3}, + [1341] = {.lex_state = 55, .external_lex_state = 3}, [1342] = {.lex_state = 0, .external_lex_state = 3}, - [1343] = {.lex_state = 55, .external_lex_state = 3}, + [1343] = {.lex_state = 1, .external_lex_state = 3}, [1344] = {.lex_state = 0, .external_lex_state = 3}, [1345] = {.lex_state = 55, .external_lex_state = 3}, [1346] = {.lex_state = 0, .external_lex_state = 3}, [1347] = {.lex_state = 0, .external_lex_state = 3}, [1348] = {.lex_state = 55, .external_lex_state = 3}, - [1349] = {.lex_state = 5, .external_lex_state = 3}, + [1349] = {.lex_state = 1, .external_lex_state = 3}, [1350] = {.lex_state = 0, .external_lex_state = 3}, - [1351] = {.lex_state = 1, .external_lex_state = 3}, - [1352] = {.lex_state = 55, .external_lex_state = 3}, - [1353] = {.lex_state = 5, .external_lex_state = 3}, - [1354] = {.lex_state = 0, .external_lex_state = 3}, - [1355] = {.lex_state = 55, .external_lex_state = 3}, + [1351] = {.lex_state = 0, .external_lex_state = 3}, + [1352] = {.lex_state = 0, .external_lex_state = 3}, + [1353] = {.lex_state = 1, .external_lex_state = 3}, + [1354] = {.lex_state = 55, .external_lex_state = 3}, + [1355] = {.lex_state = 0, .external_lex_state = 3}, [1356] = {.lex_state = 0, .external_lex_state = 3}, - [1357] = {.lex_state = 0, .external_lex_state = 3}, + [1357] = {.lex_state = 5, .external_lex_state = 3}, [1358] = {.lex_state = 0, .external_lex_state = 3}, - [1359] = {.lex_state = 0, .external_lex_state = 3}, - [1360] = {.lex_state = 1, .external_lex_state = 3}, - [1361] = {.lex_state = 0, .external_lex_state = 3}, - [1362] = {.lex_state = 0, .external_lex_state = 3}, + [1359] = {.lex_state = 1, .external_lex_state = 3}, + [1360] = {.lex_state = 0, .external_lex_state = 3}, + [1361] = {.lex_state = 55, .external_lex_state = 3}, + [1362] = {.lex_state = 1, .external_lex_state = 3}, [1363] = {.lex_state = 0, .external_lex_state = 3}, [1364] = {.lex_state = 0, .external_lex_state = 3}, - [1365] = {.lex_state = 55, .external_lex_state = 3}, - [1366] = {.lex_state = 0, .external_lex_state = 3}, - [1367] = {.lex_state = 55, .external_lex_state = 3}, - [1368] = {.lex_state = 5, .external_lex_state = 3}, + [1365] = {.lex_state = 0, .external_lex_state = 3}, + [1366] = {.lex_state = 1, .external_lex_state = 3}, + [1367] = {.lex_state = 0, .external_lex_state = 3}, + [1368] = {.lex_state = 55, .external_lex_state = 3}, [1369] = {.lex_state = 0, .external_lex_state = 3}, - [1370] = {.lex_state = 55, .external_lex_state = 3}, - [1371] = {.lex_state = 55, .external_lex_state = 3}, - [1372] = {.lex_state = 0, .external_lex_state = 3}, - [1373] = {.lex_state = 1, .external_lex_state = 3}, - [1374] = {.lex_state = 1, .external_lex_state = 3}, + [1370] = {.lex_state = 0, .external_lex_state = 3}, + [1371] = {.lex_state = 5, .external_lex_state = 3}, + [1372] = {.lex_state = 1, .external_lex_state = 3}, + [1373] = {.lex_state = 0, .external_lex_state = 3}, + [1374] = {.lex_state = 55, .external_lex_state = 3}, [1375] = {.lex_state = 0, .external_lex_state = 3}, - [1376] = {.lex_state = 1, .external_lex_state = 3}, - [1377] = {.lex_state = 1, .external_lex_state = 3}, - [1378] = {.lex_state = 0, .external_lex_state = 3}, + [1376] = {.lex_state = 5, .external_lex_state = 3}, + [1377] = {.lex_state = 0, .external_lex_state = 3}, + [1378] = {.lex_state = 5, .external_lex_state = 3}, [1379] = {.lex_state = 0, .external_lex_state = 3}, - [1380] = {.lex_state = 5, .external_lex_state = 3}, + [1380] = {.lex_state = 0, .external_lex_state = 3}, [1381] = {.lex_state = 0, .external_lex_state = 3}, - [1382] = {.lex_state = 0, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 3}, + [1382] = {.lex_state = 1, .external_lex_state = 3}, + [1383] = {.lex_state = 0, .external_lex_state = 3}, [1384] = {.lex_state = 0, .external_lex_state = 3}, [1385] = {.lex_state = 0, .external_lex_state = 3}, - [1386] = {.lex_state = 55, .external_lex_state = 3}, - [1387] = {.lex_state = 1, .external_lex_state = 3}, + [1386] = {.lex_state = 1, .external_lex_state = 3}, + [1387] = {.lex_state = 0, .external_lex_state = 3}, [1388] = {.lex_state = 0, .external_lex_state = 3}, - [1389] = {.lex_state = 1, .external_lex_state = 3}, - [1390] = {.lex_state = 0, .external_lex_state = 3}, + [1389] = {.lex_state = 0, .external_lex_state = 3}, + [1390] = {.lex_state = 5, .external_lex_state = 3}, [1391] = {.lex_state = 1, .external_lex_state = 3}, [1392] = {.lex_state = 1, .external_lex_state = 3}, [1393] = {.lex_state = 1, .external_lex_state = 3}, - [1394] = {.lex_state = 1, .external_lex_state = 3}, - [1395] = {.lex_state = 55, .external_lex_state = 3}, - [1396] = {.lex_state = 0, .external_lex_state = 3}, - [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 5, .external_lex_state = 3}, - [1399] = {.lex_state = 0, .external_lex_state = 3}, - [1400] = {.lex_state = 1, .external_lex_state = 3}, - [1401] = {.lex_state = 0, .external_lex_state = 3}, - [1402] = {.lex_state = 55, .external_lex_state = 3}, - [1403] = {.lex_state = 0, .external_lex_state = 3}, - [1404] = {.lex_state = 5, .external_lex_state = 3}, + [1394] = {.lex_state = 0, .external_lex_state = 3}, + [1395] = {.lex_state = 1, .external_lex_state = 3}, + [1396] = {.lex_state = 55, .external_lex_state = 3}, + [1397] = {.lex_state = 1, .external_lex_state = 3}, + [1398] = {.lex_state = 1, .external_lex_state = 3}, + [1399] = {.lex_state = 55, .external_lex_state = 3}, + [1400] = {.lex_state = 0, .external_lex_state = 3}, + [1401] = {.lex_state = 5, .external_lex_state = 3}, + [1402] = {.lex_state = 5, .external_lex_state = 3}, + [1403] = {.lex_state = 55, .external_lex_state = 3}, + [1404] = {.lex_state = 0, .external_lex_state = 3}, [1405] = {.lex_state = 5, .external_lex_state = 3}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 0, .external_lex_state = 3}, - [1408] = {.lex_state = 0, .external_lex_state = 3}, - [1409] = {.lex_state = 0, .external_lex_state = 3}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, + [1406] = {.lex_state = 55, .external_lex_state = 3}, + [1407] = {.lex_state = 5, .external_lex_state = 3}, + [1408] = {.lex_state = 5, .external_lex_state = 3}, + [1409] = {.lex_state = 5, .external_lex_state = 3}, + [1410] = {.lex_state = 0, .external_lex_state = 3}, [1411] = {.lex_state = 0, .external_lex_state = 3}, - [1412] = {.lex_state = 1, .external_lex_state = 3}, - [1413] = {.lex_state = 1, .external_lex_state = 3}, - [1414] = {.lex_state = 1, .external_lex_state = 3}, + [1412] = {.lex_state = 0, .external_lex_state = 3}, + [1413] = {.lex_state = 55, .external_lex_state = 3}, + [1414] = {.lex_state = 5, .external_lex_state = 3}, [1415] = {.lex_state = 0, .external_lex_state = 3}, - [1416] = {.lex_state = 0, .external_lex_state = 3}, + [1416] = {.lex_state = 1, .external_lex_state = 3}, [1417] = {.lex_state = 1, .external_lex_state = 3}, - [1418] = {.lex_state = 0, .external_lex_state = 3}, + [1418] = {.lex_state = 1, .external_lex_state = 3}, [1419] = {.lex_state = 0, .external_lex_state = 3}, [1420] = {.lex_state = 1, .external_lex_state = 3}, [1421] = {.lex_state = 1, .external_lex_state = 3}, - [1422] = {.lex_state = 0, .external_lex_state = 3}, + [1422] = {.lex_state = 1, .external_lex_state = 3}, [1423] = {.lex_state = 1, .external_lex_state = 3}, - [1424] = {.lex_state = 0, .external_lex_state = 3}, + [1424] = {.lex_state = 55, .external_lex_state = 3}, [1425] = {.lex_state = 0, .external_lex_state = 3}, [1426] = {.lex_state = 0, .external_lex_state = 3}, [1427] = {.lex_state = 0, .external_lex_state = 3}, [1428] = {.lex_state = 0, .external_lex_state = 3}, [1429] = {.lex_state = 1, .external_lex_state = 3}, - [1430] = {.lex_state = 1, .external_lex_state = 3}, + [1430] = {.lex_state = 0, .external_lex_state = 3}, [1431] = {.lex_state = 0, .external_lex_state = 3}, [1432] = {.lex_state = 1, .external_lex_state = 3}, - [1433] = {.lex_state = 0, .external_lex_state = 3}, - [1434] = {.lex_state = 5, .external_lex_state = 3}, - [1435] = {.lex_state = 0, .external_lex_state = 3}, - [1436] = {.lex_state = 1, .external_lex_state = 3}, - [1437] = {.lex_state = 0, .external_lex_state = 3}, + [1433] = {.lex_state = 1, .external_lex_state = 3}, + [1434] = {.lex_state = 0, .external_lex_state = 3}, + [1435] = {.lex_state = 5, .external_lex_state = 3}, + [1436] = {.lex_state = 0, .external_lex_state = 3}, + [1437] = {.lex_state = 5, .external_lex_state = 3}, [1438] = {.lex_state = 0, .external_lex_state = 3}, [1439] = {.lex_state = 0, .external_lex_state = 3}, - [1440] = {.lex_state = 5, .external_lex_state = 3}, + [1440] = {.lex_state = 55, .external_lex_state = 3}, [1441] = {.lex_state = 0, .external_lex_state = 3}, [1442] = {.lex_state = 0, .external_lex_state = 3}, [1443] = {.lex_state = 1, .external_lex_state = 3}, - [1444] = {.lex_state = 55, .external_lex_state = 3}, + [1444] = {.lex_state = 1, .external_lex_state = 3}, [1445] = {.lex_state = 0, .external_lex_state = 3}, [1446] = {.lex_state = 0, .external_lex_state = 3}, [1447] = {.lex_state = 0, .external_lex_state = 3}, - [1448] = {.lex_state = 55, .external_lex_state = 3}, - [1449] = {.lex_state = 1, .external_lex_state = 3}, - [1450] = {.lex_state = 55, .external_lex_state = 3}, - [1451] = {.lex_state = 5, .external_lex_state = 3}, - [1452] = {.lex_state = 5, .external_lex_state = 3}, - [1453] = {.lex_state = 0, .external_lex_state = 3}, - [1454] = {.lex_state = 5, .external_lex_state = 3}, - [1455] = {.lex_state = 0, .external_lex_state = 3}, - [1456] = {.lex_state = 0, .external_lex_state = 3}, + [1448] = {.lex_state = 1, .external_lex_state = 3}, + [1449] = {.lex_state = 0, .external_lex_state = 3}, + [1450] = {.lex_state = 1, .external_lex_state = 3}, + [1451] = {.lex_state = 0, .external_lex_state = 3}, + [1452] = {.lex_state = 0, .external_lex_state = 3}, + [1453] = {.lex_state = 1, .external_lex_state = 3}, + [1454] = {.lex_state = 0, .external_lex_state = 3}, + [1455] = {.lex_state = 5, .external_lex_state = 3}, + [1456] = {.lex_state = 5, .external_lex_state = 3}, [1457] = {.lex_state = 0, .external_lex_state = 3}, - [1458] = {.lex_state = 0, .external_lex_state = 3}, - [1459] = {.lex_state = 1, .external_lex_state = 3}, - [1460] = {.lex_state = 55, .external_lex_state = 3}, - [1461] = {.lex_state = 0, .external_lex_state = 3}, + [1458] = {.lex_state = 55, .external_lex_state = 3}, + [1459] = {.lex_state = 0, .external_lex_state = 3}, + [1460] = {.lex_state = 5, .external_lex_state = 3}, + [1461] = {.lex_state = 1, .external_lex_state = 3}, [1462] = {.lex_state = 0, .external_lex_state = 3}, [1463] = {.lex_state = 0, .external_lex_state = 3}, - [1464] = {.lex_state = 1, .external_lex_state = 3}, - [1465] = {.lex_state = 5, .external_lex_state = 3}, + [1464] = {.lex_state = 55, .external_lex_state = 3}, + [1465] = {.lex_state = 0, .external_lex_state = 3}, [1466] = {.lex_state = 55, .external_lex_state = 3}, - [1467] = {.lex_state = 55, .external_lex_state = 3}, - [1468] = {.lex_state = 1, .external_lex_state = 3}, + [1467] = {.lex_state = 1, .external_lex_state = 3}, + [1468] = {.lex_state = 0, .external_lex_state = 3}, [1469] = {.lex_state = 0, .external_lex_state = 3}, - [1470] = {.lex_state = 0, .external_lex_state = 3}, + [1470] = {.lex_state = 55, .external_lex_state = 3}, [1471] = {.lex_state = 55, .external_lex_state = 3}, [1472] = {.lex_state = 55, .external_lex_state = 3}, - [1473] = {.lex_state = 1, .external_lex_state = 3}, - [1474] = {.lex_state = 1, .external_lex_state = 3}, + [1473] = {.lex_state = 0, .external_lex_state = 3}, + [1474] = {.lex_state = 0, .external_lex_state = 3}, [1475] = {.lex_state = 55, .external_lex_state = 3}, [1476] = {.lex_state = 55, .external_lex_state = 3}, - [1477] = {.lex_state = 0, .external_lex_state = 3}, - [1478] = {.lex_state = 55, .external_lex_state = 3}, + [1477] = {.lex_state = 1, .external_lex_state = 3}, + [1478] = {.lex_state = 0, .external_lex_state = 3}, [1479] = {.lex_state = 0, .external_lex_state = 3}, [1480] = {.lex_state = 55, .external_lex_state = 3}, [1481] = {.lex_state = 0, .external_lex_state = 3}, - [1482] = {.lex_state = 1, .external_lex_state = 3}, - [1483] = {.lex_state = 1, .external_lex_state = 3}, - [1484] = {.lex_state = 0, .external_lex_state = 3}, - [1485] = {.lex_state = 1, .external_lex_state = 3}, + [1482] = {.lex_state = 55, .external_lex_state = 3}, + [1483] = {.lex_state = 0, .external_lex_state = 3}, + [1484] = {.lex_state = 1, .external_lex_state = 3}, + [1485] = {.lex_state = 0, .external_lex_state = 3}, [1486] = {.lex_state = 1, .external_lex_state = 3}, - [1487] = {.lex_state = 5, .external_lex_state = 3}, - [1488] = {.lex_state = 1, .external_lex_state = 3}, - [1489] = {.lex_state = 0, .external_lex_state = 3}, + [1487] = {.lex_state = 1, .external_lex_state = 3}, + [1488] = {.lex_state = 0, .external_lex_state = 3}, + [1489] = {.lex_state = 5, .external_lex_state = 3}, [1490] = {.lex_state = 1, .external_lex_state = 3}, [1491] = {.lex_state = 0, .external_lex_state = 3}, [1492] = {.lex_state = 1, .external_lex_state = 3}, [1493] = {.lex_state = 0, .external_lex_state = 3}, + [1494] = {.lex_state = 1, .external_lex_state = 3}, + [1495] = {.lex_state = 0, .external_lex_state = 3}, + [1496] = {.lex_state = 1, .external_lex_state = 3}, + [1497] = {.lex_state = 0, .external_lex_state = 3}, }; enum { @@ -11113,76 +11134,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1403), - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_const_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_test_item] = STATE(12), - [sym_try_item] = STATE(12), - [sym_throw_item] = STATE(12), - [sym_impl_item] = STATE(12), - [sym_interface_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(608), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(12), + [sym_source_file] = STATE(1356), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_const_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_test_item] = STATE(4), + [sym_try_item] = STATE(4), + [sym_throw_item] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_interface_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(611), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(4), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -11256,7 +11277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -11271,54 +11292,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(608), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(611), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(107), [sym_identifier] = ACTIONS(109), @@ -11394,7 +11415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -11409,54 +11430,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(558), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(546), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -11531,7 +11552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -11546,55 +11567,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(553), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(611), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(258), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -11639,7 +11661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(258), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -11663,75 +11684,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [5] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_const_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_test_item] = STATE(2), - [sym_try_item] = STATE(2), - [sym_throw_item] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_interface_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(550), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_const_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_test_item] = STATE(6), + [sym_try_item] = STATE(6), + [sym_throw_item] = STATE(6), + [sym_impl_item] = STATE(6), + [sym_interface_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(601), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(6), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -11800,286 +11821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [6] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_const_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_test_item] = STATE(8), - [sym_try_item] = STATE(8), - [sym_throw_item] = STATE(8), - [sym_impl_item] = STATE(8), - [sym_interface_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(574), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_bench] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_impl] = ACTIONS(49), - [anon_sym_interface] = ACTIONS(51), - [anon_sym_let] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_pub] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_spawn] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_test] = ACTIONS(27), - [anon_sym_throw] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_type] = ACTIONS(71), - [anon_sym_use] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [7] = { - [sym__statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_attribute_item] = STATE(19), - [sym_inner_attribute_item] = STATE(19), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(19), - [sym_enum_item] = STATE(19), - [sym_const_item] = STATE(19), - [sym_type_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_test_item] = STATE(19), - [sym_try_item] = STATE(19), - [sym_throw_item] = STATE(19), - [sym_impl_item] = STATE(19), - [sym_interface_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(568), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_bench] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_impl] = ACTIONS(49), - [anon_sym_interface] = ACTIONS(51), - [anon_sym_let] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_pub] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_spawn] = ACTIONS(61), - [anon_sym_struct] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_test] = ACTIONS(27), - [anon_sym_throw] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_type] = ACTIONS(71), - [anon_sym_use] = ACTIONS(73), - [anon_sym_while] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [8] = { [sym__statement] = STATE(2), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -12094,54 +11841,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(546), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(569), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -12187,7 +11934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(266), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12210,76 +11957,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [9] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_const_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_test_item] = STATE(10), - [sym_try_item] = STATE(10), - [sym_throw_item] = STATE(10), - [sym_impl_item] = STATE(10), - [sym_interface_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(544), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(10), + [7] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_const_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_test_item] = STATE(11), + [sym_try_item] = STATE(11), + [sym_throw_item] = STATE(11), + [sym_impl_item] = STATE(11), + [sym_interface_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(573), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(11), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -12324,7 +12071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(264), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12347,76 +12094,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [10] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_const_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_test_item] = STATE(2), - [sym_try_item] = STATE(2), - [sym_throw_item] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_interface_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(556), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(2), + [8] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_const_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_test_item] = STATE(3), + [sym_try_item] = STATE(3), + [sym_throw_item] = STATE(3), + [sym_impl_item] = STATE(3), + [sym_interface_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(542), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(3), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -12461,7 +12208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(266), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12484,76 +12231,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [11] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_const_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_test_item] = STATE(5), - [sym_try_item] = STATE(5), - [sym_throw_item] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_interface_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(551), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(5), + [9] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_const_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_test_item] = STATE(16), + [sym_try_item] = STATE(16), + [sym_throw_item] = STATE(16), + [sym_impl_item] = STATE(16), + [sym_interface_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(591), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(16), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -12598,7 +12345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(268), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12621,77 +12368,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [12] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_const_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_test_item] = STATE(2), - [sym_try_item] = STATE(2), - [sym_throw_item] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_interface_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(608), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(274), + [10] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_const_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_test_item] = STATE(13), + [sym_try_item] = STATE(13), + [sym_throw_item] = STATE(13), + [sym_impl_item] = STATE(13), + [sym_interface_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(566), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(13), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -12736,6 +12482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12758,13 +12505,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [13] = { + [11] = { [sym__statement] = STATE(2), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -12779,54 +12526,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(570), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(548), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -12872,7 +12619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(276), + [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -12895,76 +12642,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [14] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_const_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_test_item] = STATE(3), - [sym_try_item] = STATE(3), - [sym_throw_item] = STATE(3), - [sym_impl_item] = STATE(3), - [sym_interface_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(557), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(3), + [12] = { + [sym__statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_attribute_item] = STATE(17), + [sym_inner_attribute_item] = STATE(17), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(17), + [sym_enum_item] = STATE(17), + [sym_const_item] = STATE(17), + [sym_type_item] = STATE(17), + [sym_function_item] = STATE(17), + [sym_function_signature_item] = STATE(17), + [sym_test_item] = STATE(17), + [sym_try_item] = STATE(17), + [sym_throw_item] = STATE(17), + [sym_impl_item] = STATE(17), + [sym_interface_item] = STATE(17), + [sym_associated_type] = STATE(17), + [sym_let_declaration] = STATE(17), + [sym_use_declaration] = STATE(17), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(575), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(17), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -13009,7 +12756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -13032,76 +12779,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [15] = { - [sym__statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_attribute_item] = STATE(17), - [sym_inner_attribute_item] = STATE(17), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(17), - [sym_enum_item] = STATE(17), - [sym_const_item] = STATE(17), - [sym_type_item] = STATE(17), - [sym_function_item] = STATE(17), - [sym_function_signature_item] = STATE(17), - [sym_test_item] = STATE(17), - [sym_try_item] = STATE(17), - [sym_throw_item] = STATE(17), - [sym_impl_item] = STATE(17), - [sym_interface_item] = STATE(17), - [sym_associated_type] = STATE(17), - [sym_let_declaration] = STATE(17), - [sym_use_declaration] = STATE(17), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(560), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(17), + [13] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_const_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_test_item] = STATE(2), + [sym_try_item] = STATE(2), + [sym_throw_item] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_interface_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(580), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -13146,7 +12893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -13169,76 +12916,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [16] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_const_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_test_item] = STATE(13), - [sym_try_item] = STATE(13), - [sym_throw_item] = STATE(13), - [sym_impl_item] = STATE(13), - [sym_interface_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(566), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(13), + [14] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_const_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_test_item] = STATE(2), + [sym_try_item] = STATE(2), + [sym_throw_item] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_interface_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(600), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -13283,7 +13030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(282), + [anon_sym_RBRACE] = ACTIONS(278), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -13306,76 +13053,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [17] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_const_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_test_item] = STATE(2), - [sym_try_item] = STATE(2), - [sym_throw_item] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_interface_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(561), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(2), + [15] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_const_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_test_item] = STATE(14), + [sym_try_item] = STATE(14), + [sym_throw_item] = STATE(14), + [sym_impl_item] = STATE(14), + [sym_interface_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(599), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(14), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -13420,7 +13167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -13443,76 +13190,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [18] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_unwrap_expression] = STATE(404), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_const_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_test_item] = STATE(4), - [sym_try_item] = STATE(4), - [sym_throw_item] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_interface_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(549), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_source_file_repeat1] = STATE(4), + [16] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_const_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_test_item] = STATE(2), + [sym_try_item] = STATE(2), + [sym_throw_item] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_interface_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(595), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_int] = ACTIONS(13), @@ -13557,7 +13304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -13580,13 +13327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [19] = { + [17] = { [sym__statement] = STATE(2), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_attribute_item] = STATE(2), [sym_inner_attribute_item] = STATE(2), - [sym_unwrap_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_const_item] = STATE(2), @@ -13601,54 +13348,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(2), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_visibility_modifier] = STATE(953), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(589), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(587), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_source_file_repeat1] = STATE(2), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13694,6 +13441,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(103), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [18] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_const_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_test_item] = STATE(2), + [sym_try_item] = STATE(2), + [sym_throw_item] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_interface_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(590), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(2), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_bench] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_impl] = ACTIONS(49), + [anon_sym_interface] = ACTIONS(51), + [anon_sym_let] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_pub] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_spawn] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(65), + [anon_sym_test] = ACTIONS(27), + [anon_sym_throw] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_type] = ACTIONS(71), + [anon_sym_use] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(103), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [19] = { + [sym__statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_attribute_item] = STATE(18), + [sym_inner_attribute_item] = STATE(18), + [sym_unwrap_expression] = STATE(415), + [sym_struct_item] = STATE(18), + [sym_enum_item] = STATE(18), + [sym_const_item] = STATE(18), + [sym_type_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_test_item] = STATE(18), + [sym_try_item] = STATE(18), + [sym_throw_item] = STATE(18), + [sym_impl_item] = STATE(18), + [sym_interface_item] = STATE(18), + [sym_associated_type] = STATE(18), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_visibility_modifier] = STATE(962), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(588), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_source_file_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_bench] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_impl] = ACTIONS(49), + [anon_sym_interface] = ACTIONS(51), + [anon_sym_let] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_pub] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_spawn] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(65), + [anon_sym_test] = ACTIONS(27), + [anon_sym_throw] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_type] = ACTIONS(71), + [anon_sym_use] = ACTIONS(73), + [anon_sym_while] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_RBRACE] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), @@ -13718,54 +13739,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [20] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(491), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(487), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(290), [anon_sym_int] = ACTIONS(13), @@ -13851,54 +13872,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [21] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(481), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(488), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(20), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(320), [anon_sym_int] = ACTIONS(13), @@ -13908,20 +13929,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(322), [anon_sym_EQ] = ACTIONS(322), [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(324), + [anon_sym_BANG] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), [anon_sym_AMP] = ACTIONS(322), [anon_sym_PERCENT] = ACTIONS(322), [anon_sym_CARET] = ACTIONS(322), [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(322), [anon_sym_GT] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(324), [anon_sym_as] = ACTIONS(322), [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), @@ -13937,11 +13958,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(310), [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(320), [anon_sym_RBRACK] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(320), [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), @@ -13983,78 +14004,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [22] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(488), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(20), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(483), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(326), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_COMMA] = ACTIONS(330), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_BANG] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(328), [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_as] = ACTIONS(328), [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), @@ -14069,32 +14090,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(310), [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(326), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(326), [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), @@ -14115,54 +14136,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [23] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(486), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(480), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_int] = ACTIONS(13), @@ -14247,54 +14268,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [24] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(486), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(480), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_int] = ACTIONS(13), @@ -14379,54 +14400,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [25] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(479), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(489), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(340), [anon_sym_int] = ACTIONS(13), @@ -14436,19 +14457,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(330), [anon_sym_EQ] = ACTIONS(342), [anon_sym_COMMA] = ACTIONS(340), - [anon_sym_BANG] = ACTIONS(324), + [anon_sym_BANG] = ACTIONS(330), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(330), [anon_sym_AMP] = ACTIONS(342), [anon_sym_PERCENT] = ACTIONS(342), [anon_sym_CARET] = ACTIONS(342), [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(332), [anon_sym_GT] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_as] = ACTIONS(342), [anon_sym_break] = ACTIONS(29), @@ -14511,54 +14532,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [26] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(527), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(529), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -14639,54 +14660,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [27] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), [sym__expression] = STATE(571), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -14767,54 +14788,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [28] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(578), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(27), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(535), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -14822,61 +14843,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_PLUS] = ACTIONS(342), [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), - [anon_sym_break] = ACTIONS(366), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_as] = ACTIONS(342), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_AMP_AMP] = ACTIONS(340), + [anon_sym_PIPE_PIPE] = ACTIONS(340), + [anon_sym_EQ_EQ] = ACTIONS(340), + [anon_sym_BANG_EQ] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(340), + [anon_sym_GT_EQ] = ACTIONS(340), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(340), + [anon_sym_STAR_EQ] = ACTIONS(340), + [anon_sym_SLASH_EQ] = ACTIONS(340), + [anon_sym_PERCENT_EQ] = ACTIONS(340), + [anon_sym_AMP_EQ] = ACTIONS(340), + [anon_sym_PIPE_EQ] = ACTIONS(340), + [anon_sym_CARET_EQ] = ACTIONS(340), + [anon_sym_LT_LT_EQ] = ACTIONS(340), + [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -14894,54 +14915,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [29] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(547), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(593), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -14980,8 +15001,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(386), [anon_sym_try_BANG] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), @@ -15021,54 +15042,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [30] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(514), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(538), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15076,148 +15097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_as] = ACTIONS(338), - [anon_sym_break] = ACTIONS(346), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [31] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(515), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(328), [anon_sym_DASH] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(328), [anon_sym_BANG] = ACTIONS(382), [anon_sym_DOT] = ACTIONS(384), [anon_sym_STAR] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_GT] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(328), [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(348), @@ -15237,24 +15131,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(354), [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(358), [anon_sym_static] = ACTIONS(360), [anon_sym_move] = ACTIONS(362), @@ -15274,55 +15168,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [32] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(572), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [31] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(596), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(27), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15331,19 +15225,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(322), [anon_sym_EQ] = ACTIONS(322), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), [anon_sym_AMP] = ACTIONS(322), [anon_sym_PERCENT] = ACTIONS(322), [anon_sym_CARET] = ACTIONS(322), [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(322), [anon_sym_GT] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(324), [anon_sym_as] = ACTIONS(322), [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), @@ -15359,9 +15253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(310), [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), [anon_sym_DOT_DOT] = ACTIONS(372), [anon_sym_try_BANG] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(320), @@ -15401,55 +15295,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, + [32] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(597), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_as] = ACTIONS(342), + [anon_sym_break] = ACTIONS(366), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(368), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(370), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(340), + [anon_sym_PIPE_PIPE] = ACTIONS(340), + [anon_sym_EQ_EQ] = ACTIONS(340), + [anon_sym_BANG_EQ] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(340), + [anon_sym_GT_EQ] = ACTIONS(340), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(340), + [anon_sym_STAR_EQ] = ACTIONS(340), + [anon_sym_SLASH_EQ] = ACTIONS(340), + [anon_sym_PERCENT_EQ] = ACTIONS(340), + [anon_sym_AMP_EQ] = ACTIONS(340), + [anon_sym_PIPE_EQ] = ACTIONS(340), + [anon_sym_CARET_EQ] = ACTIONS(340), + [anon_sym_LT_LT_EQ] = ACTIONS(340), + [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, [33] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(547), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(536), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15470,27 +15491,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(338), [anon_sym_as] = ACTIONS(338), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_try_BANG] = ACTIONS(356), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), [anon_sym_EQ_EQ] = ACTIONS(336), @@ -15509,9 +15530,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(336), [anon_sym_LT_LT_EQ] = ACTIONS(336), [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -15529,54 +15550,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [34] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(518), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(26), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(583), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15584,61 +15605,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_DOT] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(328), [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_SQUOTE] = ACTIONS(332), - [anon_sym_as] = ACTIONS(332), - [anon_sym_break] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_as] = ACTIONS(328), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -15656,54 +15677,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [35] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(545), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(534), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(26), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15711,61 +15732,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_as] = ACTIONS(342), - [anon_sym_break] = ACTIONS(366), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_as] = ACTIONS(322), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_EQ_EQ] = ACTIONS(340), - [anon_sym_BANG_EQ] = ACTIONS(340), - [anon_sym_LT_EQ] = ACTIONS(340), - [anon_sym_GT_EQ] = ACTIONS(340), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(340), - [anon_sym_DASH_EQ] = ACTIONS(340), - [anon_sym_STAR_EQ] = ACTIONS(340), - [anon_sym_SLASH_EQ] = ACTIONS(340), - [anon_sym_PERCENT_EQ] = ACTIONS(340), - [anon_sym_AMP_EQ] = ACTIONS(340), - [anon_sym_PIPE_EQ] = ACTIONS(340), - [anon_sym_CARET_EQ] = ACTIONS(340), - [anon_sym_LT_LT_EQ] = ACTIONS(340), - [anon_sym_GT_GT_EQ] = ACTIONS(340), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -15783,54 +15804,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [36] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(514), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(593), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15851,27 +15872,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_as] = ACTIONS(338), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), [anon_sym_EQ_EQ] = ACTIONS(336), @@ -15890,9 +15911,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(336), [anon_sym_LT_LT_EQ] = ACTIONS(336), [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -15910,54 +15931,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [37] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(512), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(536), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -15965,21 +15986,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_as] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_as] = ACTIONS(338), [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(348), @@ -15994,29 +16015,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(310), [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(336), [anon_sym_DOT_DOT] = ACTIONS(354), [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_EQ_EQ] = ACTIONS(340), - [anon_sym_BANG_EQ] = ACTIONS(340), - [anon_sym_LT_EQ] = ACTIONS(340), - [anon_sym_GT_EQ] = ACTIONS(340), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(340), - [anon_sym_DASH_EQ] = ACTIONS(340), - [anon_sym_STAR_EQ] = ACTIONS(340), - [anon_sym_SLASH_EQ] = ACTIONS(340), - [anon_sym_PERCENT_EQ] = ACTIONS(340), - [anon_sym_AMP_EQ] = ACTIONS(340), - [anon_sym_PIPE_EQ] = ACTIONS(340), - [anon_sym_CARET_EQ] = ACTIONS(340), - [anon_sym_LT_LT_EQ] = ACTIONS(340), - [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(358), [anon_sym_static] = ACTIONS(360), [anon_sym_move] = ACTIONS(362), @@ -16037,62 +16058,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [38] = { - [sym_attribute_item] = STATE(49), - [sym__option_type] = STATE(1442), - [sym_unwrap_expression] = STATE(404), - [sym__type] = STATE(844), - [sym_bracketed_type] = STATE(1404), - [sym_array_type] = STATE(1130), - [sym_map_type] = STATE(1131), - [sym_function_type] = STATE(860), - [sym_generic_function] = STATE(404), - [sym_generic_type] = STATE(837), - [sym_generic_type_with_turbofish] = STATE(1132), - [sym_pointer_type] = STATE(860), - [sym__expression] = STATE(577), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(499), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_scoped_type_identifier] = STATE(806), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_enum_variant_list_repeat1] = STATE(49), + [sym_attribute_item] = STATE(50), + [sym__option_type] = STATE(1451), + [sym_unwrap_expression] = STATE(415), + [sym__type] = STATE(848), + [sym_bracketed_type] = STATE(1408), + [sym_array_type] = STATE(1244), + [sym_map_type] = STATE(1241), + [sym_function_type] = STATE(859), + [sym_generic_function] = STATE(415), + [sym_generic_type] = STATE(833), + [sym_generic_type_with_turbofish] = STATE(1224), + [sym_pointer_type] = STATE(859), + [sym__expression] = STATE(556), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(510), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_scoped_type_identifier] = STATE(809), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_enum_variant_list_repeat1] = STATE(50), [sym_identifier] = ACTIONS(392), [anon_sym_int] = ACTIONS(394), [anon_sym_float] = ACTIONS(394), @@ -16151,54 +16172,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [39] = { [sym_attribute_item] = STATE(52), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(529), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(517), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_enum_variant_list_repeat1] = STATE(52), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), @@ -16256,57 +16277,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [40] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(584), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1124), - [sym__let_chain] = STATE(1125), - [sym__condition] = STATE(1040), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(577), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1121), + [sym__let_chain] = STATE(1184), + [sym__condition] = STATE(1034), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -16361,55 +16382,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [41] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(577), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1121), + [sym__let_chain] = STATE(1184), + [sym__condition] = STATE(1069), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(346), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(420), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(350), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(352), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [42] = { [sym_attribute_item] = STATE(51), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(579), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(585), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_enum_variant_list_repeat1] = STATE(51), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), @@ -16465,95 +16591,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [42] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(584), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1124), - [sym__let_chain] = STATE(1125), - [sym__condition] = STATE(1041), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [43] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(625), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1308), + [sym__let_chain] = STATE(1306), + [sym__condition] = STATE(1430), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(420), + [anon_sym_let] = ACTIONS(424), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -16564,101 +16690,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [43] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(584), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1124), - [sym__let_chain] = STATE(1125), - [sym__condition] = STATE(1053), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [44] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(625), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1308), + [sym__let_chain] = STATE(1306), + [sym__condition] = STATE(1468), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(420), + [anon_sym_let] = ACTIONS(424), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -16669,62 +16795,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [44] = { + [45] = { [sym_attribute_item] = STATE(51), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(579), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(585), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_enum_variant_list_repeat1] = STATE(51), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), @@ -16758,7 +16884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -16780,58 +16906,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [45] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(584), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1124), - [sym__let_chain] = STATE(1125), - [sym__condition] = STATE(1083), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [46] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(577), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1121), + [sym__let_chain] = STATE(1184), + [sym__condition] = STATE(1030), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -16885,56 +17011,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [46] = { + [47] = { [sym_attribute_item] = STATE(51), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(579), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(585), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [aux_sym_enum_variant_list_repeat1] = STATE(51), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), @@ -16968,7 +17094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_RPAREN] = ACTIONS(428), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -16990,95 +17116,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [47] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(618), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1314), - [sym__let_chain] = STATE(1313), - [sym__condition] = STATE(1426), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [48] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(577), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1121), + [sym__let_chain] = STATE(1184), + [sym__condition] = STATE(1027), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(428), + [anon_sym_let] = ACTIONS(420), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -17089,64 +17215,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [48] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(618), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1314), - [sym__let_chain] = STATE(1313), - [sym__condition] = STATE(1384), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [49] = { + [sym_attribute_item] = STATE(51), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(585), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_enum_variant_list_repeat1] = STATE(51), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17158,111 +17283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(428), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [49] = { - [sym_attribute_item] = STATE(353), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(616), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_enum_variant_list_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(9), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(400), + [anon_sym_POUND] = ACTIONS(400), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), @@ -17305,56 +17326,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [50] = { - [sym_attribute_item] = STATE(51), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(579), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_enum_variant_list_repeat1] = STATE(51), + [sym_attribute_item] = STATE(354), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(621), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_enum_variant_list_repeat1] = STATE(354), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17409,56 +17430,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [51] = { - [sym_attribute_item] = STATE(353), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(562), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_enum_variant_list_repeat1] = STATE(353), + [sym_attribute_item] = STATE(354), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(592), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_enum_variant_list_repeat1] = STATE(354), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17513,56 +17534,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [52] = { - [sym_attribute_item] = STATE(353), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(511), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_enum_variant_list_repeat1] = STATE(353), + [sym_attribute_item] = STATE(354), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(523), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_enum_variant_list_repeat1] = STATE(354), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17617,55 +17638,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [53] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(594), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1026), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(539), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17673,36 +17693,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym__] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_DASH_GT] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(420), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -17720,54 +17741,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [54] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(484), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(594), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17775,9 +17796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(436), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -17800,6 +17820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(438), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -17823,54 +17844,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [55] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(580), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(565), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17878,9 +17899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(432), + [anon_sym__] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_DASH_GT] = ACTIONS(442), [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), [anon_sym_STAR] = ACTIONS(434), @@ -17926,54 +17947,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [56] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(522), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(512), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -17982,7 +18003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(444), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18005,7 +18026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(446), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -18029,54 +18050,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [57] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(484), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(490), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18084,9 +18105,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(432), + [anon_sym__] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(442), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18110,7 +18131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -18132,55 +18153,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [58] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(555), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_tuple_expression_repeat1] = STATE(75), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(481), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18188,7 +18208,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), + [anon_sym__] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(450), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18212,7 +18234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -18235,55 +18256,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [59] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(555), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_tuple_expression_repeat1] = STATE(74), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(493), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18291,7 +18311,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), + [anon_sym__] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18315,7 +18337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -18338,92 +18359,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [60] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(474), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(522), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), [sym_let_condition] = STATE(1026), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(428), + [anon_sym_let] = ACTIONS(420), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -18434,61 +18455,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [61] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(487), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(564), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1026), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(346), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(420), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(350), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(352), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [62] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(528), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym__] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_DASH_GT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(346), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(350), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(352), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [63] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(562), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_tuple_expression_repeat1] = STATE(67), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18496,9 +18724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18522,7 +18748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_RPAREN] = ACTIONS(452), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -18543,159 +18770,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [62] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(449), - [anon_sym_int] = ACTIONS(452), - [anon_sym_float] = ACTIONS(452), - [anon_sym_decimal] = ACTIONS(452), - [anon_sym_bool] = ACTIONS(452), - [anon_sym_string] = ACTIONS(452), - [anon_sym_channel] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(455), - [anon_sym__] = ACTIONS(455), - [anon_sym_BSLASH] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_DASH_GT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(449), - [anon_sym_COLON] = ACTIONS(455), - [anon_sym_COLON_COLON] = ACTIONS(449), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(446), - [anon_sym_as] = ACTIONS(446), - [anon_sym_assert] = ACTIONS(446), - [anon_sym_assert_eq] = ACTIONS(446), - [anon_sym_assert_ne] = ACTIONS(446), - [anon_sym_async] = ACTIONS(446), - [anon_sym_bench] = ACTIONS(446), - [anon_sym_break] = ACTIONS(446), - [anon_sym_case] = ACTIONS(446), - [anon_sym_catch] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_continue] = ACTIONS(446), - [anon_sym_default] = ACTIONS(446), - [anon_sym_defer] = ACTIONS(446), - [anon_sym_do] = ACTIONS(446), - [anon_sym_else] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_finally] = ACTIONS(446), - [anon_sym_fn] = ACTIONS(446), - [anon_sym_for] = ACTIONS(446), - [anon_sym_if] = ACTIONS(446), - [anon_sym_impl] = ACTIONS(446), - [anon_sym_interface] = ACTIONS(446), - [anon_sym_let] = ACTIONS(446), - [anon_sym_loop] = ACTIONS(446), - [anon_sym_nil] = ACTIONS(446), - [anon_sym_panic] = ACTIONS(446), - [anon_sym_pub] = ACTIONS(446), - [anon_sym_return] = ACTIONS(446), - [anon_sym_select] = ACTIONS(446), - [anon_sym_spawn] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(446), - [anon_sym_test] = ACTIONS(446), - [anon_sym_throw] = ACTIONS(446), - [anon_sym_throws] = ACTIONS(446), - [anon_sym_try] = ACTIONS(446), - [anon_sym_type] = ACTIONS(446), - [anon_sym_use] = ACTIONS(446), - [anon_sym_while] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_RBRACK] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(461), - [sym_mutable_specifier] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(469), - [sym_integer_literal] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(475), - [anon_sym_BQUOTE] = ACTIONS(478), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(446), - [sym_super] = ACTIONS(446), - [sym_crate] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - }, - [63] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(619), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_let_condition] = STATE(1026), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [64] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(490), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18703,7 +18826,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), + [anon_sym__] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(442), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18718,7 +18843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(428), [anon_sym_loop] = ACTIONS(306), [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), @@ -18728,7 +18852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -18749,55 +18873,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [64] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(582), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [65] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(481), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18805,8 +18929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(484), + [anon_sym__] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(450), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -18829,9 +18954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -18852,55 +18976,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [65] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(532), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [66] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(560), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -18908,37 +19032,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym__] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_DASH_GT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -18955,55 +19079,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [66] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(480), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [67] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(558), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_tuple_expression_repeat1] = STATE(73), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19011,9 +19136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -19037,7 +19160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -19058,55 +19182,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [67] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(487), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [68] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(558), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_tuple_expression_repeat1] = STATE(74), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19114,9 +19239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -19140,6 +19263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(454), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -19161,158 +19285,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [68] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(573), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, [69] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(582), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(493), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19320,8 +19341,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(492), + [anon_sym__] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_GT] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -19344,9 +19366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -19368,55 +19389,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [70] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(539), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_tuple_expression_repeat1] = STATE(58), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(606), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_let_condition] = STATE(1026), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19439,6 +19460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(424), [anon_sym_loop] = ACTIONS(306), [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), @@ -19448,7 +19470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(496), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -19471,92 +19492,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [71] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(524), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(479), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), [sym_let_condition] = STATE(1026), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), - [anon_sym_let] = ACTIONS(420), + [anon_sym_let] = ACTIONS(424), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -19567,61 +19588,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [72] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(523), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(530), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19629,9 +19650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(488), + [anon_sym__] = ACTIONS(430), [anon_sym_DASH] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(418), [anon_sym_DOT] = ACTIONS(384), [anon_sym_STAR] = ACTIONS(418), @@ -19677,158 +19698,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [73] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(559), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_DASH_GT] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(623), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_tuple_expression_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(456), + [anon_sym_int] = ACTIONS(459), + [anon_sym_float] = ACTIONS(459), + [anon_sym_decimal] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_string] = ACTIONS(459), + [anon_sym_channel] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_default] = ACTIONS(486), + [anon_sym_defer] = ACTIONS(489), + [anon_sym_do] = ACTIONS(492), + [anon_sym_for] = ACTIONS(495), + [anon_sym_if] = ACTIONS(498), + [anon_sym_loop] = ACTIONS(501), + [anon_sym_return] = ACTIONS(504), + [anon_sym_spawn] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_try] = ACTIONS(513), + [anon_sym_while] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_try_BANG] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_move] = ACTIONS(542), + [sym_integer_literal] = ACTIONS(545), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(551), + [sym_char_literal] = ACTIONS(545), + [anon_sym_true] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), + [anon_sym_union] = ACTIONS(486), + [sym_self] = ACTIONS(459), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(560), + [sym_raw_string_literal] = ACTIONS(545), + [sym_float_literal] = ACTIONS(545), }, [74] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(585), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_tuple_expression_repeat1] = STATE(75), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(568), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [aux_sym_tuple_expression_repeat1] = STATE(73), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -19860,7 +19881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -19883,157 +19904,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [75] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(622), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [aux_sym_tuple_expression_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(500), - [anon_sym_int] = ACTIONS(503), - [anon_sym_float] = ACTIONS(503), - [anon_sym_decimal] = ACTIONS(503), - [anon_sym_bool] = ACTIONS(503), - [anon_sym_string] = ACTIONS(503), - [anon_sym_channel] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(518), - [anon_sym_break] = ACTIONS(521), - [anon_sym_const] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(530), - [anon_sym_defer] = ACTIONS(533), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(539), - [anon_sym_if] = ACTIONS(542), - [anon_sym_loop] = ACTIONS(545), - [anon_sym_return] = ACTIONS(548), - [anon_sym_spawn] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(554), - [anon_sym_try] = ACTIONS(557), - [anon_sym_while] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(574), - [anon_sym_try_BANG] = ACTIONS(577), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_static] = ACTIONS(583), - [anon_sym_move] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(589), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_char_literal] = ACTIONS(589), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(530), - [sym_self] = ACTIONS(503), - [sym_super] = ACTIONS(601), - [sym_crate] = ACTIONS(601), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - }, - [76] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(480), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(594), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20041,9 +19959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_DASH_GT] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(565), [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), @@ -20066,6 +19983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), @@ -20088,55 +20006,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [77] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(533), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [76] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(527), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20144,9 +20062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym__] = ACTIONS(430), + [anon_sym__] = ACTIONS(448), [anon_sym_DASH] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(432), + [anon_sym_DASH_GT] = ACTIONS(450), [anon_sym_BANG] = ACTIONS(418), [anon_sym_DOT] = ACTIONS(384), [anon_sym_STAR] = ACTIONS(418), @@ -20191,56 +20109,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, + [77] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_int] = ACTIONS(575), + [anon_sym_float] = ACTIONS(575), + [anon_sym_decimal] = ACTIONS(575), + [anon_sym_bool] = ACTIONS(575), + [anon_sym_string] = ACTIONS(575), + [anon_sym_channel] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym__] = ACTIONS(578), + [anon_sym_BSLASH] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(578), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_assert] = ACTIONS(569), + [anon_sym_assert_eq] = ACTIONS(569), + [anon_sym_assert_ne] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_bench] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_case] = ACTIONS(569), + [anon_sym_catch] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(569), + [anon_sym_do] = ACTIONS(569), + [anon_sym_else] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_finally] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_interface] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_nil] = ACTIONS(569), + [anon_sym_panic] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_select] = ACTIONS(569), + [anon_sym_spawn] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_test] = ACTIONS(569), + [anon_sym_throw] = ACTIONS(569), + [anon_sym_throws] = ACTIONS(569), + [anon_sym_try] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_RBRACK] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(601), + [sym_char_literal] = ACTIONS(595), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_raw_string_literal] = ACTIONS(595), + [sym_float_literal] = ACTIONS(595), + }, [78] = { - [sym_expression_statement] = STATE(221), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(531), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(290), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(514), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20294,54 +20315,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [79] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(448), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(1190), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(607), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(496), + [sym_switch_expression] = STATE(496), + [sym_while_expression] = STATE(496), + [sym_loop_expression] = STATE(496), + [sym_for_expression] = STATE(496), + [sym_const_block] = STATE(496), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(496), + [sym_defer_block] = STATE(496), + [sym_do_catch_block] = STATE(496), + [sym_block] = STATE(496), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20357,7 +20379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(609), + [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), @@ -20373,8 +20395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [sym_mutable_specifier] = ACTIONS(611), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -20396,55 +20417,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [80] = { - [sym_expression_statement] = STATE(1216), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(601), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(494), - [sym_switch_expression] = STATE(494), - [sym_while_expression] = STATE(494), - [sym_loop_expression] = STATE(494), - [sym_for_expression] = STATE(494), - [sym_const_block] = STATE(494), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(494), - [sym_defer_block] = STATE(494), - [sym_do_catch_block] = STATE(494), - [sym_block] = STATE(494), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(738), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(514), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(355), + [sym_switch_expression] = STATE(355), + [sym_while_expression] = STATE(355), + [sym_loop_expression] = STATE(355), + [sym_for_expression] = STATE(355), + [sym_const_block] = STATE(355), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(355), + [sym_defer_block] = STATE(355), + [sym_do_catch_block] = STATE(355), + [sym_block] = STATE(355), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20476,7 +20497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -20498,55 +20519,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [81] = { - [sym_expression_statement] = STATE(748), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(601), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_while_expression] = STATE(352), - [sym_loop_expression] = STATE(352), - [sym_for_expression] = STATE(352), - [sym_const_block] = STATE(352), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(352), - [sym_defer_block] = STATE(352), - [sym_do_catch_block] = STATE(352), - [sym_block] = STATE(352), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(1180), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(607), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(496), + [sym_switch_expression] = STATE(496), + [sym_while_expression] = STATE(496), + [sym_loop_expression] = STATE(496), + [sym_for_expression] = STATE(496), + [sym_const_block] = STATE(496), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(496), + [sym_defer_block] = STATE(496), + [sym_do_catch_block] = STATE(496), + [sym_block] = STATE(496), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20600,55 +20621,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [82] = { - [sym_expression_statement] = STATE(259), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(608), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(454), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20664,23 +20684,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_for] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_loop] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), [anon_sym_return] = ACTIONS(59), - [anon_sym_spawn] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(65), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), [anon_sym_try] = ACTIONS(312), - [anon_sym_while] = ACTIONS(75), + [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), + [sym_mutable_specifier] = ACTIONS(611), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -20702,55 +20723,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [83] = { - [sym_expression_statement] = STATE(774), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(531), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_while_expression] = STATE(352), - [sym_loop_expression] = STATE(352), - [sym_for_expression] = STATE(352), - [sym_const_block] = STATE(352), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(352), - [sym_defer_block] = STATE(352), - [sym_do_catch_block] = STATE(352), - [sym_block] = STATE(352), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(236), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(533), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20759,28 +20780,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(613), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_break] = ACTIONS(29), - [anon_sym_const] = ACTIONS(296), + [anon_sym_const] = ACTIONS(607), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), + [anon_sym_defer] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_for] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_loop] = ACTIONS(55), [anon_sym_return] = ACTIONS(59), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), + [anon_sym_spawn] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(65), [anon_sym_try] = ACTIONS(312), - [anon_sym_while] = ACTIONS(314), + [anon_sym_while] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), @@ -20804,55 +20825,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [84] = { - [sym_expression_statement] = STATE(247), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(520), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(193), - [sym_switch_expression] = STATE(193), - [sym_while_expression] = STATE(193), - [sym_loop_expression] = STATE(193), - [sym_for_expression] = STATE(193), - [sym_const_block] = STATE(193), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1367), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(193), - [sym_defer_block] = STATE(193), - [sym_do_catch_block] = STATE(193), - [sym_block] = STATE(193), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(237), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(611), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(186), + [sym_switch_expression] = STATE(186), + [sym_while_expression] = STATE(186), + [sym_loop_expression] = STATE(186), + [sym_for_expression] = STATE(186), + [sym_const_block] = STATE(186), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1368), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(186), + [sym_defer_block] = STATE(186), + [sym_do_catch_block] = STATE(186), + [sym_block] = STATE(186), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20861,7 +20882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), @@ -20884,7 +20905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -20906,55 +20927,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [85] = { - [sym_expression_statement] = STATE(1180), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(601), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(494), - [sym_switch_expression] = STATE(494), - [sym_while_expression] = STATE(494), - [sym_loop_expression] = STATE(494), - [sym_for_expression] = STATE(494), - [sym_const_block] = STATE(494), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(494), - [sym_defer_block] = STATE(494), - [sym_do_catch_block] = STATE(494), - [sym_block] = STATE(494), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(750), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(607), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(355), + [sym_switch_expression] = STATE(355), + [sym_while_expression] = STATE(355), + [sym_loop_expression] = STATE(355), + [sym_for_expression] = STATE(355), + [sym_const_block] = STATE(355), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(355), + [sym_defer_block] = STATE(355), + [sym_do_catch_block] = STATE(355), + [sym_block] = STATE(355), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -20963,7 +20984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(615), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), @@ -21008,55 +21029,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [86] = { - [sym_expression_statement] = STATE(724), - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(601), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(352), - [sym_switch_expression] = STATE(352), - [sym_while_expression] = STATE(352), - [sym_loop_expression] = STATE(352), - [sym_for_expression] = STATE(352), - [sym_const_block] = STATE(352), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(352), - [sym_defer_block] = STATE(352), - [sym_do_catch_block] = STATE(352), - [sym_block] = STATE(352), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_expression_statement] = STATE(749), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(607), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(355), + [sym_switch_expression] = STATE(355), + [sym_while_expression] = STATE(355), + [sym_loop_expression] = STATE(355), + [sym_for_expression] = STATE(355), + [sym_const_block] = STATE(355), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(355), + [sym_defer_block] = STATE(355), + [sym_do_catch_block] = STATE(355), + [sym_block] = STATE(355), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -21065,7 +21086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(15), [anon_sym_DOT] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), @@ -21110,54 +21131,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [87] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(476), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(574), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -21189,7 +21210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -21211,15 +21232,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [88] = { - [sym_delim_token_tree] = STATE(151), - [sym__delim_tokens] = STATE(151), - [sym__non_delim_token] = STATE(151), - [sym__literal] = STATE(151), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(151), + [sym_delim_token_tree] = STATE(153), + [sym__delim_tokens] = STATE(153), + [sym__non_delim_token] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(153), [sym_identifier] = ACTIONS(617), [anon_sym_SEMI] = ACTIONS(619), [anon_sym_int] = ACTIONS(621), @@ -21293,8 +21314,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(617), [anon_sym_LBRACK] = ACTIONS(625), [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), [sym_mutable_specifier] = ACTIONS(617), [anon_sym_DOLLAR] = ACTIONS(633), [sym_integer_literal] = ACTIONS(635), @@ -21312,54 +21333,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(635), }, [89] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(478), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(484), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -21413,54 +21434,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [90] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(610), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(485), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -21492,7 +21513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -21514,54 +21535,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [91] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(537), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(619), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -21615,69 +21636,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [92] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(548), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(570), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -21686,19 +21707,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -21709,76 +21730,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [93] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(489), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(572), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -21787,19 +21808,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -21810,76 +21831,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [94] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(615), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(581), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -21888,19 +21909,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -21911,76 +21932,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [95] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(475), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(582), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -21989,19 +22010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22012,76 +22033,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [96] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(490), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(540), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -22090,19 +22111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22113,76 +22134,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [97] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(483), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(561), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -22191,19 +22212,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22214,61 +22235,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [98] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(530), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(543), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22276,35 +22297,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22322,54 +22343,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [99] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(526), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(544), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22377,35 +22398,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22423,54 +22444,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [100] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(525), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(545), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22478,35 +22499,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22524,54 +22545,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [101] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(524), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(554), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22579,35 +22600,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -22625,54 +22646,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [102] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(582), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(446), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(366), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(368), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(370), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [103] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(604), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22725,156 +22847,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [103] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(516), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, [104] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(419), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(482), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22928,54 +22949,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [105] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(517), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(425), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -22983,35 +23004,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23029,54 +23050,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [106] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(621), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(622), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -23130,54 +23151,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [107] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(474), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(425), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -23231,116 +23252,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [108] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(513), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [109] = { - [sym_delim_token_tree] = STATE(162), - [sym__delim_tokens] = STATE(162), - [sym__non_delim_token] = STATE(162), - [sym__literal] = STATE(162), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(162), + [sym_delim_token_tree] = STATE(138), + [sym__delim_tokens] = STATE(138), + [sym__non_delim_token] = STATE(138), + [sym__literal] = STATE(138), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(138), [sym_identifier] = ACTIONS(643), [anon_sym_SEMI] = ACTIONS(619), [anon_sym_int] = ACTIONS(621), @@ -23413,11 +23333,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(643), [anon_sym_while] = ACTIONS(643), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(631), + [anon_sym_RBRACK] = ACTIONS(645), [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), [sym_mutable_specifier] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(647), [sym_integer_literal] = ACTIONS(635), [anon_sym_DQUOTE] = ACTIONS(637), [anon_sym_BQUOTE] = ACTIONS(639), @@ -23432,91 +23352,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(635), [sym_float_literal] = ACTIONS(635), }, - [110] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(448), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [109] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(491), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23527,97 +23447,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [111] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(536), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [110] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(486), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23628,97 +23548,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [112] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(535), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [111] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(553), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23729,97 +23649,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [113] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(534), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [112] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(586), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23830,97 +23750,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [114] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(419), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [113] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(494), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -23931,76 +23851,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [115] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(419), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [114] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(559), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -24009,19 +23929,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -24032,76 +23952,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, + [115] = { + [sym_delim_token_tree] = STATE(139), + [sym__delim_tokens] = STATE(139), + [sym__non_delim_token] = STATE(139), + [sym__literal] = STATE(139), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(649), + [anon_sym_as] = ACTIONS(649), + [anon_sym_assert] = ACTIONS(649), + [anon_sym_assert_eq] = ACTIONS(649), + [anon_sym_assert_ne] = ACTIONS(649), + [anon_sym_async] = ACTIONS(649), + [anon_sym_bench] = ACTIONS(649), + [anon_sym_break] = ACTIONS(649), + [anon_sym_case] = ACTIONS(649), + [anon_sym_catch] = ACTIONS(649), + [anon_sym_const] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_default] = ACTIONS(649), + [anon_sym_defer] = ACTIONS(649), + [anon_sym_do] = ACTIONS(649), + [anon_sym_else] = ACTIONS(649), + [anon_sym_enum] = ACTIONS(649), + [anon_sym_finally] = ACTIONS(649), + [anon_sym_fn] = ACTIONS(649), + [anon_sym_for] = ACTIONS(649), + [anon_sym_if] = ACTIONS(649), + [anon_sym_impl] = ACTIONS(649), + [anon_sym_interface] = ACTIONS(649), + [anon_sym_let] = ACTIONS(649), + [anon_sym_loop] = ACTIONS(649), + [anon_sym_nil] = ACTIONS(649), + [anon_sym_panic] = ACTIONS(649), + [anon_sym_pub] = ACTIONS(649), + [anon_sym_return] = ACTIONS(649), + [anon_sym_select] = ACTIONS(649), + [anon_sym_spawn] = ACTIONS(649), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_test] = ACTIONS(649), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_throws] = ACTIONS(649), + [anon_sym_try] = ACTIONS(649), + [anon_sym_type] = ACTIONS(649), + [anon_sym_use] = ACTIONS(649), + [anon_sym_while] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(651), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(649), + [sym_super] = ACTIONS(649), + [sym_crate] = ACTIONS(649), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, [116] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(595), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(446), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -24110,19 +24131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -24133,61 +24154,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [117] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(420), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(615), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -24219,7 +24240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -24241,69 +24262,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(93), }, [118] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(597), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(492), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -24312,19 +24333,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -24335,97 +24356,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [119] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(420), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(550), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(346), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(350), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(352), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(354), - [anon_sym_try_BANG] = ACTIONS(356), - [anon_sym_yield] = ACTIONS(358), - [anon_sym_static] = ACTIONS(360), - [anon_sym_move] = ACTIONS(362), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -24436,76 +24457,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [120] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(592), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(478), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -24514,20 +24535,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), - [sym_integer_literal] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), [sym_char_literal] = ACTIONS(93), @@ -24537,76 +24558,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [121] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(587), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(479), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -24615,19 +24636,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -24638,61 +24659,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, [122] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(586), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(616), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(29), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(59), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [123] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(578), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -24724,7 +24846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), + [anon_sym_DOT_DOT] = ACTIONS(386), [anon_sym_try_BANG] = ACTIONS(374), [anon_sym_yield] = ACTIONS(376), [anon_sym_static] = ACTIONS(378), @@ -24745,55 +24867,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [123] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(607), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [124] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(594), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -24846,55 +24968,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [124] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(583), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [125] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(609), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(29), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(59), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), + }, + [126] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(454), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -24926,7 +25149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(372), [anon_sym_try_BANG] = ACTIONS(374), [anon_sym_yield] = ACTIONS(376), [anon_sym_static] = ACTIONS(378), @@ -24947,117 +25170,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [125] = { - [sym_delim_token_tree] = STATE(168), - [sym__delim_tokens] = STATE(168), - [sym__non_delim_token] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_as] = ACTIONS(647), - [anon_sym_assert] = ACTIONS(647), - [anon_sym_assert_eq] = ACTIONS(647), - [anon_sym_assert_ne] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_bench] = ACTIONS(647), - [anon_sym_break] = ACTIONS(647), - [anon_sym_case] = ACTIONS(647), - [anon_sym_catch] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_default] = ACTIONS(647), - [anon_sym_defer] = ACTIONS(647), - [anon_sym_do] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(647), - [anon_sym_finally] = ACTIONS(647), - [anon_sym_fn] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_impl] = ACTIONS(647), - [anon_sym_interface] = ACTIONS(647), - [anon_sym_let] = ACTIONS(647), - [anon_sym_loop] = ACTIONS(647), - [anon_sym_nil] = ACTIONS(647), - [anon_sym_panic] = ACTIONS(647), - [anon_sym_pub] = ACTIONS(647), - [anon_sym_return] = ACTIONS(647), - [anon_sym_select] = ACTIONS(647), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(647), - [anon_sym_test] = ACTIONS(647), - [anon_sym_throw] = ACTIONS(647), - [anon_sym_throws] = ACTIONS(647), - [anon_sym_try] = ACTIONS(647), - [anon_sym_type] = ACTIONS(647), - [anon_sym_use] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(649), - [sym_mutable_specifier] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(651), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), + [127] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(454), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(29), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(59), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(647), - [sym_super] = ACTIONS(647), - [sym_crate] = ACTIONS(647), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), }, - [126] = { - [sym_delim_token_tree] = STATE(167), - [sym__delim_tokens] = STATE(167), - [sym__non_delim_token] = STATE(167), - [sym__literal] = STATE(167), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(167), + [128] = { + [sym_delim_token_tree] = STATE(157), + [sym__delim_tokens] = STATE(157), + [sym__non_delim_token] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(157), [sym_identifier] = ACTIONS(653), [anon_sym_SEMI] = ACTIONS(619), [anon_sym_int] = ACTIONS(621), @@ -25131,8 +25354,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(653), [anon_sym_LBRACK] = ACTIONS(625), [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(645), [sym_mutable_specifier] = ACTIONS(653), [anon_sym_DOLLAR] = ACTIONS(655), [sym_integer_literal] = ACTIONS(635), @@ -25149,171 +25372,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(635), [sym_float_literal] = ACTIONS(635), }, - [127] = { - [sym_delim_token_tree] = STATE(165), - [sym__delim_tokens] = STATE(165), - [sym__non_delim_token] = STATE(165), - [sym__literal] = STATE(165), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_as] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_eq] = ACTIONS(657), - [anon_sym_assert_ne] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_bench] = ACTIONS(657), - [anon_sym_break] = ACTIONS(657), - [anon_sym_case] = ACTIONS(657), - [anon_sym_catch] = ACTIONS(657), - [anon_sym_const] = ACTIONS(657), - [anon_sym_continue] = ACTIONS(657), - [anon_sym_default] = ACTIONS(657), - [anon_sym_defer] = ACTIONS(657), - [anon_sym_do] = ACTIONS(657), - [anon_sym_else] = ACTIONS(657), - [anon_sym_enum] = ACTIONS(657), - [anon_sym_finally] = ACTIONS(657), - [anon_sym_fn] = ACTIONS(657), - [anon_sym_for] = ACTIONS(657), - [anon_sym_if] = ACTIONS(657), - [anon_sym_impl] = ACTIONS(657), - [anon_sym_interface] = ACTIONS(657), - [anon_sym_let] = ACTIONS(657), - [anon_sym_loop] = ACTIONS(657), - [anon_sym_nil] = ACTIONS(657), - [anon_sym_panic] = ACTIONS(657), - [anon_sym_pub] = ACTIONS(657), - [anon_sym_return] = ACTIONS(657), - [anon_sym_select] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(657), - [anon_sym_struct] = ACTIONS(657), - [anon_sym_switch] = ACTIONS(657), - [anon_sym_test] = ACTIONS(657), - [anon_sym_throw] = ACTIONS(657), - [anon_sym_throws] = ACTIONS(657), - [anon_sym_try] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_use] = ACTIONS(657), - [anon_sym_while] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(659), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(657), - [sym_super] = ACTIONS(657), - [sym_crate] = ACTIONS(657), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), - }, - [128] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(581), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [129] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(549), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -25322,19 +25444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -25345,61 +25467,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [129] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(611), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [130] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(476), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -25431,7 +25553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -25452,55 +25574,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [130] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(575), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [131] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(425), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -25508,35 +25630,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -25553,55 +25675,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [131] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(569), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [132] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(626), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -25654,55 +25776,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [132] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(567), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [133] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(526), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -25710,35 +25832,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -25755,91 +25877,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [133] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(599), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [134] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(525), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -25850,97 +25972,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [134] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(448), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [135] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(524), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -25951,76 +26073,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [135] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(563), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [136] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(551), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -26029,19 +26151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -26052,76 +26174,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [136] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(554), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), + [137] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(608), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(29), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -26130,19 +26252,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(59), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(312), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_try_BANG] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_static] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -26153,61 +26275,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), + [sym_super] = ACTIONS(101), + [sym_crate] = ACTIONS(101), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [137] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(590), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [138] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [139] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [140] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(627), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26260,55 +26584,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [138] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(543), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [141] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(576), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26361,91 +26685,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [139] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(612), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [142] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(446), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -26456,97 +26780,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [140] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(485), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [143] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(521), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -26557,61 +26881,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [141] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(477), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [144] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(618), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26643,7 +26967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -26664,55 +26988,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [142] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(552), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(65), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [145] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(520), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26744,7 +27068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(354), [anon_sym_try_BANG] = ACTIONS(356), [anon_sym_yield] = ACTIONS(358), [anon_sym_static] = ACTIONS(360), @@ -26765,55 +27089,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [143] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(609), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [146] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(610), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26866,55 +27190,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [144] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(482), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [147] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(614), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -26946,7 +27270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_try_BANG] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_static] = ACTIONS(89), @@ -26967,156 +27291,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [145] = { - [sym_delim_token_tree] = STATE(160), - [sym__delim_tokens] = STATE(160), - [sym__non_delim_token] = STATE(160), - [sym__literal] = STATE(160), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_assert_eq] = ACTIONS(661), - [anon_sym_assert_ne] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_bench] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_case] = ACTIONS(661), - [anon_sym_catch] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_defer] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_finally] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_interface] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_nil] = ACTIONS(661), - [anon_sym_panic] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_select] = ACTIONS(661), - [anon_sym_spawn] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_test] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_throws] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), - }, - [146] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(614), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [148] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(617), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27169,55 +27392,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [147] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(576), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [149] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(552), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27270,55 +27493,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [148] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(591), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [150] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(602), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27371,55 +27594,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [149] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(541), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [151] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(555), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27472,118 +27695,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [150] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(420), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [151] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), + [152] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), [anon_sym_SEMI] = ACTIONS(619), [anon_sym_int] = ACTIONS(621), [anon_sym_float] = ACTIONS(621), @@ -27614,151 +27736,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(619), [anon_sym_PIPE] = ACTIONS(619), [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(667), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(663), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), [sym_raw_string_literal] = ACTIONS(635), [sym_float_literal] = ACTIONS(635), }, - [152] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(623), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [153] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [154] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [155] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(522), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -27769,61 +28093,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [153] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(602), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [156] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(620), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27876,55 +28200,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [154] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(564), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [157] = { + [sym_delim_token_tree] = STATE(77), + [sym__delim_tokens] = STATE(77), + [sym__non_delim_token] = STATE(77), + [sym__literal] = STATE(77), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(657), + [anon_sym_as] = ACTIONS(657), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_eq] = ACTIONS(657), + [anon_sym_assert_ne] = ACTIONS(657), + [anon_sym_async] = ACTIONS(657), + [anon_sym_bench] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_case] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_const] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_finally] = ACTIONS(657), + [anon_sym_fn] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_impl] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_let] = ACTIONS(657), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_panic] = ACTIONS(657), + [anon_sym_pub] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_select] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_throws] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_use] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(659), + [sym_mutable_specifier] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(657), + [sym_super] = ACTIONS(657), + [sym_crate] = ACTIONS(657), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [158] = { + [sym_delim_token_tree] = STATE(154), + [sym__delim_tokens] = STATE(154), + [sym__non_delim_token] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_as] = ACTIONS(665), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_assert_eq] = ACTIONS(665), + [anon_sym_assert_ne] = ACTIONS(665), + [anon_sym_async] = ACTIONS(665), + [anon_sym_bench] = ACTIONS(665), + [anon_sym_break] = ACTIONS(665), + [anon_sym_case] = ACTIONS(665), + [anon_sym_catch] = ACTIONS(665), + [anon_sym_const] = ACTIONS(665), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_default] = ACTIONS(665), + [anon_sym_defer] = ACTIONS(665), + [anon_sym_do] = ACTIONS(665), + [anon_sym_else] = ACTIONS(665), + [anon_sym_enum] = ACTIONS(665), + [anon_sym_finally] = ACTIONS(665), + [anon_sym_fn] = ACTIONS(665), + [anon_sym_for] = ACTIONS(665), + [anon_sym_if] = ACTIONS(665), + [anon_sym_impl] = ACTIONS(665), + [anon_sym_interface] = ACTIONS(665), + [anon_sym_let] = ACTIONS(665), + [anon_sym_loop] = ACTIONS(665), + [anon_sym_nil] = ACTIONS(665), + [anon_sym_panic] = ACTIONS(665), + [anon_sym_pub] = ACTIONS(665), + [anon_sym_return] = ACTIONS(665), + [anon_sym_select] = ACTIONS(665), + [anon_sym_spawn] = ACTIONS(665), + [anon_sym_struct] = ACTIONS(665), + [anon_sym_switch] = ACTIONS(665), + [anon_sym_test] = ACTIONS(665), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_throws] = ACTIONS(665), + [anon_sym_try] = ACTIONS(665), + [anon_sym_type] = ACTIONS(665), + [anon_sym_use] = ACTIONS(665), + [anon_sym_while] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [sym_mutable_specifier] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(667), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(665), + [sym_super] = ACTIONS(665), + [sym_crate] = ACTIONS(665), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [159] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(454), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -27932,35 +28458,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -27977,91 +28503,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [155] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(620), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [160] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(513), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -28072,76 +28598,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [156] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(603), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [161] = { + [sym_delim_token_tree] = STATE(152), + [sym__delim_tokens] = STATE(152), + [sym__non_delim_token] = STATE(152), + [sym__literal] = STATE(152), + [sym_string_literal] = STATE(196), + [sym_string_template] = STATE(196), + [sym_boolean_literal] = STATE(196), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_int] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_decimal] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_string] = ACTIONS(621), + [anon_sym_channel] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym__] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_as] = ACTIONS(669), + [anon_sym_assert] = ACTIONS(669), + [anon_sym_assert_eq] = ACTIONS(669), + [anon_sym_assert_ne] = ACTIONS(669), + [anon_sym_async] = ACTIONS(669), + [anon_sym_bench] = ACTIONS(669), + [anon_sym_break] = ACTIONS(669), + [anon_sym_case] = ACTIONS(669), + [anon_sym_catch] = ACTIONS(669), + [anon_sym_const] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_default] = ACTIONS(669), + [anon_sym_defer] = ACTIONS(669), + [anon_sym_do] = ACTIONS(669), + [anon_sym_else] = ACTIONS(669), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_finally] = ACTIONS(669), + [anon_sym_fn] = ACTIONS(669), + [anon_sym_for] = ACTIONS(669), + [anon_sym_if] = ACTIONS(669), + [anon_sym_impl] = ACTIONS(669), + [anon_sym_interface] = ACTIONS(669), + [anon_sym_let] = ACTIONS(669), + [anon_sym_loop] = ACTIONS(669), + [anon_sym_nil] = ACTIONS(669), + [anon_sym_panic] = ACTIONS(669), + [anon_sym_pub] = ACTIONS(669), + [anon_sym_return] = ACTIONS(669), + [anon_sym_select] = ACTIONS(669), + [anon_sym_spawn] = ACTIONS(669), + [anon_sym_struct] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_test] = ACTIONS(669), + [anon_sym_throw] = ACTIONS(669), + [anon_sym_throws] = ACTIONS(669), + [anon_sym_try] = ACTIONS(669), + [anon_sym_type] = ACTIONS(669), + [anon_sym_use] = ACTIONS(669), + [anon_sym_while] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(629), + [sym_mutable_specifier] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(671), + [sym_integer_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(639), + [sym_char_literal] = ACTIONS(635), + [anon_sym_true] = ACTIONS(641), + [anon_sym_false] = ACTIONS(641), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [sym_self] = ACTIONS(669), + [sym_super] = ACTIONS(669), + [sym_crate] = ACTIONS(669), + [sym_raw_string_literal] = ACTIONS(635), + [sym_float_literal] = ACTIONS(635), + }, + [162] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(598), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(53), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(434), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(366), [anon_sym_const] = ACTIONS(296), [anon_sym_continue] = ACTIONS(33), [anon_sym_default] = ACTIONS(35), @@ -28150,19 +28777,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(368), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(370), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_try_BANG] = ACTIONS(374), + [anon_sym_yield] = ACTIONS(376), + [anon_sym_static] = ACTIONS(378), + [anon_sym_move] = ACTIONS(380), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -28173,61 +28800,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [157] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(528), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [163] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(531), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -28280,91 +28907,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [158] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(598), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [164] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(515), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -28375,61 +29002,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [159] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(542), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [165] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(563), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -28482,192 +29109,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [160] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), - }, - [161] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(605), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(9), + [166] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(518), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), [anon_sym_decimal] = ACTIONS(13), [anon_sym_bool] = ACTIONS(13), [anon_sym_string] = ACTIONS(13), [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), [anon_sym_LT] = ACTIONS(21), [anon_sym_PIPE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(29), + [anon_sym_break] = ACTIONS(346), [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(348), [anon_sym_default] = ACTIONS(35), [anon_sym_defer] = ACTIONS(298), [anon_sym_do] = ACTIONS(300), [anon_sym_for] = ACTIONS(302), [anon_sym_if] = ACTIONS(304), [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(59), + [anon_sym_return] = ACTIONS(350), [anon_sym_spawn] = ACTIONS(308), [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(312), + [anon_sym_try] = ACTIONS(352), [anon_sym_while] = ACTIONS(314), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_LBRACE] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_try_BANG] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), [sym_integer_literal] = ACTIONS(93), [anon_sym_DQUOTE] = ACTIONS(95), [anon_sym_BQUOTE] = ACTIONS(97), @@ -28678,162 +29204,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(5), [anon_sym_union] = ACTIONS(35), [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(101), - [sym_crate] = ACTIONS(101), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), [sym_metavariable] = ACTIONS(105), [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [162] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), - }, - [163] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(613), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [167] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(605), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -28886,257 +29311,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [164] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1148), - [sym__expression] = STATE(448), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(503), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(73), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), - [sym_identifier] = ACTIONS(344), - [anon_sym_int] = ACTIONS(13), - [anon_sym_float] = ACTIONS(13), - [anon_sym_decimal] = ACTIONS(13), - [anon_sym_bool] = ACTIONS(13), - [anon_sym_string] = ACTIONS(13), - [anon_sym_channel] = ACTIONS(13), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(21), - [anon_sym_PIPE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_break] = ACTIONS(366), - [anon_sym_const] = ACTIONS(296), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_default] = ACTIONS(35), - [anon_sym_defer] = ACTIONS(298), - [anon_sym_do] = ACTIONS(300), - [anon_sym_for] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(306), - [anon_sym_return] = ACTIONS(368), - [anon_sym_spawn] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_try] = ACTIONS(370), - [anon_sym_while] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(372), - [anon_sym_try_BANG] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(376), - [anon_sym_static] = ACTIONS(378), - [anon_sym_move] = ACTIONS(380), - [sym_integer_literal] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(97), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(35), - [sym_self] = ACTIONS(13), - [sym_super] = ACTIONS(364), - [sym_crate] = ACTIONS(364), - [sym_metavariable] = ACTIONS(105), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - }, - [165] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), - }, - [166] = { - [sym_unwrap_expression] = STATE(404), - [sym_bracketed_type] = STATE(1406), - [sym_array_type] = STATE(1409), - [sym_map_type] = STATE(1416), - [sym_generic_function] = STATE(404), - [sym_generic_type_with_turbofish] = STATE(1237), - [sym__expression] = STATE(600), - [sym__expression_except_range] = STATE(404), - [sym_scoped_identifier] = STATE(468), - [sym_scoped_type_identifier_in_expression_position] = STATE(1266), - [sym_range_expression] = STATE(424), - [sym_unary_expression] = STATE(404), - [sym_try_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_assignment_expression] = STATE(404), - [sym_compound_assignment_expr] = STATE(404), - [sym_type_assertion] = STATE(404), - [sym_type_cast_expression] = STATE(404), - [sym_return_expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_array_expression] = STATE(404), - [sym_map_expression] = STATE(404), - [sym_parenthesized_expression] = STATE(404), - [sym_tuple_expression] = STATE(404), - [sym_unit_expression] = STATE(404), - [sym_struct_expression] = STATE(404), - [sym_if_expression] = STATE(404), - [sym_switch_expression] = STATE(404), - [sym_while_expression] = STATE(404), - [sym_loop_expression] = STATE(404), - [sym_for_expression] = STATE(404), - [sym_const_block] = STATE(404), - [sym_closure_expression] = STATE(404), - [sym_closure_parameters] = STATE(61), - [sym_label] = STATE(1460), - [sym_break_expression] = STATE(404), - [sym_continue_expression] = STATE(404), - [sym_index_expression] = STATE(404), - [sym_field_expression] = STATE(395), - [sym_spawn_block] = STATE(404), - [sym_defer_block] = STATE(404), - [sym_do_catch_block] = STATE(404), - [sym_block] = STATE(404), - [sym__literal] = STATE(404), - [sym_string_literal] = STATE(388), - [sym_string_template] = STATE(388), - [sym_boolean_literal] = STATE(388), + [168] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__expression] = STATE(603), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(470), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(69), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), [sym_identifier] = ACTIONS(9), [anon_sym_int] = ACTIONS(13), [anon_sym_float] = ACTIONS(13), @@ -29189,209 +29412,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(93), [sym_float_literal] = ACTIONS(93), }, - [167] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(629), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), + [169] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(557), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(346), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(350), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(352), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), }, - [168] = { - [sym_delim_token_tree] = STATE(62), - [sym__delim_tokens] = STATE(62), - [sym__non_delim_token] = STATE(62), - [sym__literal] = STATE(62), - [sym_string_literal] = STATE(197), - [sym_string_template] = STATE(197), - [sym_boolean_literal] = STATE(197), - [aux_sym__non_special_token_repeat1] = STATE(187), - [aux_sym_delim_token_tree_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_int] = ACTIONS(621), - [anon_sym_float] = ACTIONS(621), - [anon_sym_decimal] = ACTIONS(621), - [anon_sym_bool] = ACTIONS(621), - [anon_sym_string] = ACTIONS(621), - [anon_sym_channel] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(665), - [anon_sym_as] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_assert_eq] = ACTIONS(665), - [anon_sym_assert_ne] = ACTIONS(665), - [anon_sym_async] = ACTIONS(665), - [anon_sym_bench] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_case] = ACTIONS(665), - [anon_sym_catch] = ACTIONS(665), - [anon_sym_const] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_defer] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_finally] = ACTIONS(665), - [anon_sym_fn] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_impl] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_let] = ACTIONS(665), - [anon_sym_loop] = ACTIONS(665), - [anon_sym_nil] = ACTIONS(665), - [anon_sym_panic] = ACTIONS(665), - [anon_sym_pub] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_select] = ACTIONS(665), - [anon_sym_spawn] = ACTIONS(665), - [anon_sym_struct] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_test] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_throws] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_type] = ACTIONS(665), - [anon_sym_use] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(671), - [sym_mutable_specifier] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(669), - [sym_integer_literal] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_char_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(641), - [anon_sym_false] = ACTIONS(641), + [170] = { + [sym_unwrap_expression] = STATE(415), + [sym_bracketed_type] = STATE(1357), + [sym_array_type] = STATE(1358), + [sym_map_type] = STATE(1365), + [sym_generic_function] = STATE(415), + [sym_generic_type_with_turbofish] = STATE(1169), + [sym__expression] = STATE(519), + [sym__expression_except_range] = STATE(415), + [sym_scoped_identifier] = STATE(508), + [sym_scoped_type_identifier_in_expression_position] = STATE(1330), + [sym_range_expression] = STATE(453), + [sym_unary_expression] = STATE(415), + [sym_try_expression] = STATE(415), + [sym_binary_expression] = STATE(415), + [sym_assignment_expression] = STATE(415), + [sym_compound_assignment_expr] = STATE(415), + [sym_type_assertion] = STATE(415), + [sym_type_cast_expression] = STATE(415), + [sym_return_expression] = STATE(415), + [sym_yield_expression] = STATE(415), + [sym_call_expression] = STATE(415), + [sym_array_expression] = STATE(415), + [sym_map_expression] = STATE(415), + [sym_parenthesized_expression] = STATE(415), + [sym_tuple_expression] = STATE(415), + [sym_unit_expression] = STATE(415), + [sym_struct_expression] = STATE(415), + [sym_if_expression] = STATE(415), + [sym_switch_expression] = STATE(415), + [sym_while_expression] = STATE(415), + [sym_loop_expression] = STATE(415), + [sym_for_expression] = STATE(415), + [sym_const_block] = STATE(415), + [sym_closure_expression] = STATE(415), + [sym_closure_parameters] = STATE(72), + [sym_label] = STATE(1464), + [sym_break_expression] = STATE(415), + [sym_continue_expression] = STATE(415), + [sym_index_expression] = STATE(415), + [sym_field_expression] = STATE(414), + [sym_spawn_block] = STATE(415), + [sym_defer_block] = STATE(415), + [sym_do_catch_block] = STATE(415), + [sym_block] = STATE(415), + [sym__literal] = STATE(415), + [sym_string_literal] = STATE(420), + [sym_string_template] = STATE(420), + [sym_boolean_literal] = STATE(420), + [sym_identifier] = ACTIONS(344), + [anon_sym_int] = ACTIONS(13), + [anon_sym_float] = ACTIONS(13), + [anon_sym_decimal] = ACTIONS(13), + [anon_sym_bool] = ACTIONS(13), + [anon_sym_string] = ACTIONS(13), + [anon_sym_channel] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_break] = ACTIONS(346), + [anon_sym_const] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(35), + [anon_sym_defer] = ACTIONS(298), + [anon_sym_do] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_return] = ACTIONS(350), + [anon_sym_spawn] = ACTIONS(308), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_try] = ACTIONS(352), + [anon_sym_while] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(354), + [anon_sym_try_BANG] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(358), + [anon_sym_static] = ACTIONS(360), + [anon_sym_move] = ACTIONS(362), + [sym_integer_literal] = ACTIONS(93), + [anon_sym_DQUOTE] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(97), + [sym_char_literal] = ACTIONS(93), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_crate] = ACTIONS(665), - [sym_raw_string_literal] = ACTIONS(635), - [sym_float_literal] = ACTIONS(635), + [anon_sym_union] = ACTIONS(35), + [sym_self] = ACTIONS(13), + [sym_super] = ACTIONS(364), + [sym_crate] = ACTIONS(364), + [sym_metavariable] = ACTIONS(105), + [sym_raw_string_literal] = ACTIONS(93), + [sym_float_literal] = ACTIONS(93), }, - [169] = { + [171] = { [ts_builtin_sym_end] = ACTIONS(673), [sym_identifier] = ACTIONS(675), [anon_sym_SEMI] = ACTIONS(673), @@ -29488,8 +29711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(673), [sym_float_literal] = ACTIONS(673), }, - [170] = { - [sym_else_clause] = STATE(181), + [172] = { [ts_builtin_sym_end] = ACTIONS(677), [sym_identifier] = ACTIONS(679), [anon_sym_SEMI] = ACTIONS(677), @@ -29522,8 +29744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(679), [anon_sym_defer] = ACTIONS(679), [anon_sym_do] = ACTIONS(679), - [anon_sym_else] = ACTIONS(681), + [anon_sym_else] = ACTIONS(679), [anon_sym_enum] = ACTIONS(679), + [anon_sym_finally] = ACTIONS(679), [anon_sym_fn] = ACTIONS(679), [anon_sym_for] = ACTIONS(679), [anon_sym_if] = ACTIONS(679), @@ -29585,298 +29808,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(677), [sym_float_literal] = ACTIONS(677), }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(683), - [anon_sym_int] = ACTIONS(685), - [anon_sym_float] = ACTIONS(685), - [anon_sym_decimal] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_string] = ACTIONS(685), - [anon_sym_channel] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_bench] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_defer] = ACTIONS(685), - [anon_sym_do] = ACTIONS(685), - [anon_sym_else] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_finally] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_spawn] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(685), - [anon_sym_test] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(685), - [anon_sym_try] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_DOT_DOT] = ACTIONS(683), - [anon_sym_try_BANG] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(685), - [anon_sym_GT_GT] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(683), - [anon_sym_DASH_EQ] = ACTIONS(683), - [anon_sym_STAR_EQ] = ACTIONS(683), - [anon_sym_SLASH_EQ] = ACTIONS(683), - [anon_sym_PERCENT_EQ] = ACTIONS(683), - [anon_sym_AMP_EQ] = ACTIONS(683), - [anon_sym_PIPE_EQ] = ACTIONS(683), - [anon_sym_CARET_EQ] = ACTIONS(683), - [anon_sym_LT_LT_EQ] = ACTIONS(683), - [anon_sym_GT_GT_EQ] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_move] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [anon_sym_BQUOTE] = ACTIONS(683), - [sym_char_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(685), - [anon_sym_false] = ACTIONS(685), + [173] = { + [ts_builtin_sym_end] = ACTIONS(681), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_int] = ACTIONS(683), + [anon_sym_float] = ACTIONS(683), + [anon_sym_decimal] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_string] = ACTIONS(683), + [anon_sym_channel] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_PERCENT] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_bench] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_defer] = ACTIONS(683), + [anon_sym_do] = ACTIONS(683), + [anon_sym_else] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_finally] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_interface] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_spawn] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_switch] = ACTIONS(683), + [anon_sym_test] = ACTIONS(683), + [anon_sym_throw] = ACTIONS(683), + [anon_sym_try] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_DOT_DOT] = ACTIONS(681), + [anon_sym_try_BANG] = ACTIONS(681), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_yield] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_move] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(681), + [anon_sym_BQUOTE] = ACTIONS(681), + [sym_char_literal] = ACTIONS(681), + [anon_sym_true] = ACTIONS(683), + [anon_sym_false] = ACTIONS(683), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(685), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(683), - [sym_raw_string_literal] = ACTIONS(683), - [sym_float_literal] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym_metavariable] = ACTIONS(681), + [sym_raw_string_literal] = ACTIONS(681), + [sym_float_literal] = ACTIONS(681), }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_int] = ACTIONS(689), - [anon_sym_float] = ACTIONS(689), - [anon_sym_decimal] = ACTIONS(689), - [anon_sym_bool] = ACTIONS(689), - [anon_sym_string] = ACTIONS(689), - [anon_sym_channel] = ACTIONS(689), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(689), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_as] = ACTIONS(689), - [anon_sym_bench] = ACTIONS(689), - [anon_sym_break] = ACTIONS(689), - [anon_sym_const] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_default] = ACTIONS(689), - [anon_sym_defer] = ACTIONS(689), - [anon_sym_do] = ACTIONS(689), - [anon_sym_else] = ACTIONS(689), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_finally] = ACTIONS(689), - [anon_sym_fn] = ACTIONS(689), - [anon_sym_for] = ACTIONS(689), - [anon_sym_if] = ACTIONS(689), - [anon_sym_impl] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(689), - [anon_sym_let] = ACTIONS(689), - [anon_sym_loop] = ACTIONS(689), - [anon_sym_pub] = ACTIONS(689), - [anon_sym_return] = ACTIONS(689), - [anon_sym_spawn] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_test] = ACTIONS(689), - [anon_sym_throw] = ACTIONS(689), - [anon_sym_try] = ACTIONS(689), - [anon_sym_type] = ACTIONS(689), - [anon_sym_use] = ACTIONS(689), - [anon_sym_while] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_try_BANG] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS_EQ] = ACTIONS(687), - [anon_sym_DASH_EQ] = ACTIONS(687), - [anon_sym_STAR_EQ] = ACTIONS(687), - [anon_sym_SLASH_EQ] = ACTIONS(687), - [anon_sym_PERCENT_EQ] = ACTIONS(687), - [anon_sym_AMP_EQ] = ACTIONS(687), - [anon_sym_PIPE_EQ] = ACTIONS(687), - [anon_sym_CARET_EQ] = ACTIONS(687), - [anon_sym_LT_LT_EQ] = ACTIONS(687), - [anon_sym_GT_GT_EQ] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_static] = ACTIONS(689), - [anon_sym_move] = ACTIONS(689), - [sym_integer_literal] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_BQUOTE] = ACTIONS(687), - [sym_char_literal] = ACTIONS(687), - [anon_sym_true] = ACTIONS(689), - [anon_sym_false] = ACTIONS(689), + [174] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_int] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_decimal] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_channel] = ACTIONS(687), + [anon_sym_SLASH] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_CARET] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_as] = ACTIONS(687), + [anon_sym_bench] = ACTIONS(687), + [anon_sym_break] = ACTIONS(687), + [anon_sym_const] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(687), + [anon_sym_default] = ACTIONS(687), + [anon_sym_defer] = ACTIONS(687), + [anon_sym_do] = ACTIONS(687), + [anon_sym_else] = ACTIONS(687), + [anon_sym_enum] = ACTIONS(687), + [anon_sym_finally] = ACTIONS(687), + [anon_sym_fn] = ACTIONS(687), + [anon_sym_for] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(687), + [anon_sym_interface] = ACTIONS(687), + [anon_sym_let] = ACTIONS(687), + [anon_sym_loop] = ACTIONS(687), + [anon_sym_pub] = ACTIONS(687), + [anon_sym_return] = ACTIONS(687), + [anon_sym_spawn] = ACTIONS(687), + [anon_sym_struct] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(687), + [anon_sym_test] = ACTIONS(687), + [anon_sym_throw] = ACTIONS(687), + [anon_sym_try] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_use] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_DOT_DOT] = ACTIONS(685), + [anon_sym_try_BANG] = ACTIONS(685), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_static] = ACTIONS(687), + [anon_sym_move] = ACTIONS(687), + [sym_integer_literal] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [sym_char_literal] = ACTIONS(685), + [anon_sym_true] = ACTIONS(687), + [anon_sym_false] = ACTIONS(687), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(689), - [sym_self] = ACTIONS(689), - [sym_super] = ACTIONS(689), - [sym_crate] = ACTIONS(689), - [sym_metavariable] = ACTIONS(687), - [sym_raw_string_literal] = ACTIONS(687), - [sym_float_literal] = ACTIONS(687), + [anon_sym_union] = ACTIONS(687), + [sym_self] = ACTIONS(687), + [sym_super] = ACTIONS(687), + [sym_crate] = ACTIONS(687), + [sym_metavariable] = ACTIONS(685), + [sym_raw_string_literal] = ACTIONS(685), + [sym_float_literal] = ACTIONS(685), }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(691), - [sym_identifier] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_int] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_decimal] = ACTIONS(693), - [anon_sym_bool] = ACTIONS(693), - [anon_sym_string] = ACTIONS(693), - [anon_sym_channel] = ACTIONS(693), - [anon_sym_SLASH] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_DOT] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_POUND] = ACTIONS(691), - [anon_sym_PERCENT] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_as] = ACTIONS(693), - [anon_sym_bench] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_const] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_defer] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), + [175] = { + [sym_else_clause] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(689), + [sym_identifier] = ACTIONS(691), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_int] = ACTIONS(691), + [anon_sym_float] = ACTIONS(691), + [anon_sym_decimal] = ACTIONS(691), + [anon_sym_bool] = ACTIONS(691), + [anon_sym_string] = ACTIONS(691), + [anon_sym_channel] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_as] = ACTIONS(691), + [anon_sym_bench] = ACTIONS(691), + [anon_sym_break] = ACTIONS(691), + [anon_sym_const] = ACTIONS(691), + [anon_sym_continue] = ACTIONS(691), + [anon_sym_default] = ACTIONS(691), + [anon_sym_defer] = ACTIONS(691), + [anon_sym_do] = ACTIONS(691), [anon_sym_else] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_finally] = ACTIONS(693), - [anon_sym_fn] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_impl] = ACTIONS(693), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_let] = ACTIONS(693), - [anon_sym_loop] = ACTIONS(693), - [anon_sym_pub] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_spawn] = ACTIONS(693), - [anon_sym_struct] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_test] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_type] = ACTIONS(693), - [anon_sym_use] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_DOT_DOT] = ACTIONS(691), - [anon_sym_try_BANG] = ACTIONS(691), - [anon_sym_AMP_AMP] = ACTIONS(691), - [anon_sym_PIPE_PIPE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_BANG_EQ] = ACTIONS(691), - [anon_sym_LT_EQ] = ACTIONS(691), - [anon_sym_GT_EQ] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(691), - [anon_sym_DASH_EQ] = ACTIONS(691), - [anon_sym_STAR_EQ] = ACTIONS(691), - [anon_sym_SLASH_EQ] = ACTIONS(691), - [anon_sym_PERCENT_EQ] = ACTIONS(691), - [anon_sym_AMP_EQ] = ACTIONS(691), - [anon_sym_PIPE_EQ] = ACTIONS(691), - [anon_sym_CARET_EQ] = ACTIONS(691), - [anon_sym_LT_LT_EQ] = ACTIONS(691), - [anon_sym_GT_GT_EQ] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_move] = ACTIONS(693), - [sym_integer_literal] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(691), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(693), - [anon_sym_false] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(691), + [anon_sym_fn] = ACTIONS(691), + [anon_sym_for] = ACTIONS(691), + [anon_sym_if] = ACTIONS(691), + [anon_sym_impl] = ACTIONS(691), + [anon_sym_interface] = ACTIONS(691), + [anon_sym_let] = ACTIONS(691), + [anon_sym_loop] = ACTIONS(691), + [anon_sym_pub] = ACTIONS(691), + [anon_sym_return] = ACTIONS(691), + [anon_sym_spawn] = ACTIONS(691), + [anon_sym_struct] = ACTIONS(691), + [anon_sym_switch] = ACTIONS(691), + [anon_sym_test] = ACTIONS(691), + [anon_sym_throw] = ACTIONS(691), + [anon_sym_try] = ACTIONS(691), + [anon_sym_type] = ACTIONS(691), + [anon_sym_use] = ACTIONS(691), + [anon_sym_while] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_DOT_DOT] = ACTIONS(689), + [anon_sym_try_BANG] = ACTIONS(689), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_EQ_EQ] = ACTIONS(689), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_STAR_EQ] = ACTIONS(689), + [anon_sym_SLASH_EQ] = ACTIONS(689), + [anon_sym_PERCENT_EQ] = ACTIONS(689), + [anon_sym_AMP_EQ] = ACTIONS(689), + [anon_sym_PIPE_EQ] = ACTIONS(689), + [anon_sym_CARET_EQ] = ACTIONS(689), + [anon_sym_LT_LT_EQ] = ACTIONS(689), + [anon_sym_GT_GT_EQ] = ACTIONS(689), + [anon_sym_yield] = ACTIONS(691), + [anon_sym_static] = ACTIONS(691), + [anon_sym_move] = ACTIONS(691), + [sym_integer_literal] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [sym_char_literal] = ACTIONS(689), + [anon_sym_true] = ACTIONS(691), + [anon_sym_false] = ACTIONS(691), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(693), - [sym_self] = ACTIONS(693), - [sym_super] = ACTIONS(693), - [sym_crate] = ACTIONS(693), - [sym_metavariable] = ACTIONS(691), - [sym_raw_string_literal] = ACTIONS(691), - [sym_float_literal] = ACTIONS(691), + [anon_sym_union] = ACTIONS(691), + [sym_self] = ACTIONS(691), + [sym_super] = ACTIONS(691), + [sym_crate] = ACTIONS(691), + [sym_metavariable] = ACTIONS(689), + [sym_raw_string_literal] = ACTIONS(689), + [sym_float_literal] = ACTIONS(689), }, - [174] = { + [176] = { [ts_builtin_sym_end] = ACTIONS(695), [sym_identifier] = ACTIONS(697), [anon_sym_SEMI] = ACTIONS(695), @@ -29973,7 +30196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(695), [sym_float_literal] = ACTIONS(695), }, - [175] = { + [177] = { [ts_builtin_sym_end] = ACTIONS(699), [sym_identifier] = ACTIONS(701), [anon_sym_SEMI] = ACTIONS(699), @@ -30069,7 +30292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(699), [sym_float_literal] = ACTIONS(699), }, - [176] = { + [178] = { [ts_builtin_sym_end] = ACTIONS(705), [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(705), @@ -30164,7 +30387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(705), [sym_float_literal] = ACTIONS(705), }, - [177] = { + [179] = { [ts_builtin_sym_end] = ACTIONS(709), [sym_identifier] = ACTIONS(711), [anon_sym_SEMI] = ACTIONS(709), @@ -30259,197 +30482,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(709), [sym_float_literal] = ACTIONS(709), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(713), - [sym_identifier] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_int] = ACTIONS(715), - [anon_sym_float] = ACTIONS(715), - [anon_sym_decimal] = ACTIONS(715), - [anon_sym_bool] = ACTIONS(715), - [anon_sym_string] = ACTIONS(715), - [anon_sym_channel] = ACTIONS(715), - [anon_sym_SLASH] = ACTIONS(715), - [anon_sym_DASH] = ACTIONS(715), + [180] = { + [aux_sym__non_special_token_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_int] = ACTIONS(713), + [anon_sym_float] = ACTIONS(713), + [anon_sym_decimal] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_string] = ACTIONS(713), + [anon_sym_channel] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym__] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(717), [anon_sym_EQ] = ACTIONS(715), + [anon_sym_DASH_GT] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(715), [anon_sym_BANG] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(715), [anon_sym_DOT] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), [anon_sym_STAR] = ACTIONS(715), [anon_sym_AMP] = ACTIONS(715), - [anon_sym_POUND] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(715), [anon_sym_PERCENT] = ACTIONS(715), [anon_sym_CARET] = ACTIONS(715), [anon_sym_PLUS] = ACTIONS(715), [anon_sym_LT] = ACTIONS(715), [anon_sym_GT] = ACTIONS(715), [anon_sym_PIPE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(715), - [anon_sym_as] = ACTIONS(715), - [anon_sym_bench] = ACTIONS(715), - [anon_sym_break] = ACTIONS(715), - [anon_sym_const] = ACTIONS(715), - [anon_sym_continue] = ACTIONS(715), - [anon_sym_default] = ACTIONS(715), - [anon_sym_defer] = ACTIONS(715), - [anon_sym_do] = ACTIONS(715), - [anon_sym_enum] = ACTIONS(715), - [anon_sym_fn] = ACTIONS(715), - [anon_sym_for] = ACTIONS(715), - [anon_sym_if] = ACTIONS(715), - [anon_sym_impl] = ACTIONS(715), - [anon_sym_interface] = ACTIONS(715), - [anon_sym_let] = ACTIONS(715), - [anon_sym_loop] = ACTIONS(715), - [anon_sym_pub] = ACTIONS(715), - [anon_sym_return] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(715), - [anon_sym_switch] = ACTIONS(715), - [anon_sym_test] = ACTIONS(715), - [anon_sym_throw] = ACTIONS(715), - [anon_sym_try] = ACTIONS(715), - [anon_sym_type] = ACTIONS(715), - [anon_sym_use] = ACTIONS(715), - [anon_sym_while] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_try_BANG] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(713), - [anon_sym_PIPE_PIPE] = ACTIONS(713), - [anon_sym_EQ_EQ] = ACTIONS(713), - [anon_sym_BANG_EQ] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(713), - [anon_sym_GT_EQ] = ACTIONS(713), - [anon_sym_LT_LT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_DASH_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_AMP_EQ] = ACTIONS(713), - [anon_sym_PIPE_EQ] = ACTIONS(713), - [anon_sym_CARET_EQ] = ACTIONS(713), - [anon_sym_LT_LT_EQ] = ACTIONS(713), - [anon_sym_GT_GT_EQ] = ACTIONS(713), - [anon_sym_yield] = ACTIONS(715), - [anon_sym_static] = ACTIONS(715), - [anon_sym_move] = ACTIONS(715), - [sym_integer_literal] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [sym_char_literal] = ACTIONS(713), - [anon_sym_true] = ACTIONS(715), - [anon_sym_false] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_assert] = ACTIONS(713), + [anon_sym_assert_eq] = ACTIONS(713), + [anon_sym_assert_ne] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_bench] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_case] = ACTIONS(713), + [anon_sym_catch] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_defer] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_else] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_finally] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_interface] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_nil] = ACTIONS(713), + [anon_sym_panic] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_select] = ACTIONS(713), + [anon_sym_spawn] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_test] = ACTIONS(713), + [anon_sym_throw] = ACTIONS(713), + [anon_sym_throws] = ACTIONS(713), + [anon_sym_try] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [sym_mutable_specifier] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(719), + [sym_integer_literal] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(719), + [sym_char_literal] = ACTIONS(719), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(715), - [sym_self] = ACTIONS(715), - [sym_super] = ACTIONS(715), - [sym_crate] = ACTIONS(715), - [sym_metavariable] = ACTIONS(713), - [sym_raw_string_literal] = ACTIONS(713), - [sym_float_literal] = ACTIONS(713), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_raw_string_literal] = ACTIONS(719), + [sym_float_literal] = ACTIONS(719), }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(717), - [sym_identifier] = ACTIONS(719), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_int] = ACTIONS(719), - [anon_sym_float] = ACTIONS(719), - [anon_sym_decimal] = ACTIONS(719), - [anon_sym_bool] = ACTIONS(719), - [anon_sym_string] = ACTIONS(719), - [anon_sym_channel] = ACTIONS(719), - [anon_sym_SLASH] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [anon_sym_EQ] = ACTIONS(719), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_DOT] = ACTIONS(719), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_AMP] = ACTIONS(719), - [anon_sym_POUND] = ACTIONS(717), - [anon_sym_PERCENT] = ACTIONS(719), - [anon_sym_CARET] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(719), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_GT] = ACTIONS(719), - [anon_sym_PIPE] = ACTIONS(719), - [anon_sym_SQUOTE] = ACTIONS(719), - [anon_sym_as] = ACTIONS(719), - [anon_sym_bench] = ACTIONS(719), - [anon_sym_break] = ACTIONS(719), - [anon_sym_const] = ACTIONS(719), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_default] = ACTIONS(719), - [anon_sym_defer] = ACTIONS(719), - [anon_sym_do] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(719), - [anon_sym_fn] = ACTIONS(719), - [anon_sym_for] = ACTIONS(719), - [anon_sym_if] = ACTIONS(719), - [anon_sym_impl] = ACTIONS(719), - [anon_sym_interface] = ACTIONS(719), - [anon_sym_let] = ACTIONS(719), - [anon_sym_loop] = ACTIONS(719), - [anon_sym_pub] = ACTIONS(719), - [anon_sym_return] = ACTIONS(719), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_struct] = ACTIONS(719), - [anon_sym_switch] = ACTIONS(719), - [anon_sym_test] = ACTIONS(719), - [anon_sym_throw] = ACTIONS(719), - [anon_sym_try] = ACTIONS(719), - [anon_sym_type] = ACTIONS(719), - [anon_sym_use] = ACTIONS(719), - [anon_sym_while] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_DOT_DOT] = ACTIONS(717), - [anon_sym_try_BANG] = ACTIONS(717), - [anon_sym_AMP_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(717), - [anon_sym_BANG_EQ] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(717), - [anon_sym_GT_EQ] = ACTIONS(717), - [anon_sym_LT_LT] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(719), - [anon_sym_PLUS_EQ] = ACTIONS(717), - [anon_sym_DASH_EQ] = ACTIONS(717), - [anon_sym_STAR_EQ] = ACTIONS(717), - [anon_sym_SLASH_EQ] = ACTIONS(717), - [anon_sym_PERCENT_EQ] = ACTIONS(717), - [anon_sym_AMP_EQ] = ACTIONS(717), - [anon_sym_PIPE_EQ] = ACTIONS(717), - [anon_sym_CARET_EQ] = ACTIONS(717), - [anon_sym_LT_LT_EQ] = ACTIONS(717), - [anon_sym_GT_GT_EQ] = ACTIONS(717), - [anon_sym_yield] = ACTIONS(719), - [anon_sym_static] = ACTIONS(719), - [anon_sym_move] = ACTIONS(719), - [sym_integer_literal] = ACTIONS(717), - [anon_sym_DQUOTE] = ACTIONS(717), - [anon_sym_BQUOTE] = ACTIONS(717), - [sym_char_literal] = ACTIONS(717), - [anon_sym_true] = ACTIONS(719), - [anon_sym_false] = ACTIONS(719), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(719), - [sym_self] = ACTIONS(719), - [sym_super] = ACTIONS(719), - [sym_crate] = ACTIONS(719), - [sym_metavariable] = ACTIONS(717), - [sym_raw_string_literal] = ACTIONS(717), - [sym_float_literal] = ACTIONS(717), - }, - [180] = { + [181] = { [ts_builtin_sym_end] = ACTIONS(721), [sym_identifier] = ACTIONS(723), [anon_sym_SEMI] = ACTIONS(721), @@ -30544,7 +30672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(721), [sym_float_literal] = ACTIONS(721), }, - [181] = { + [182] = { [ts_builtin_sym_end] = ACTIONS(725), [sym_identifier] = ACTIONS(727), [anon_sym_SEMI] = ACTIONS(725), @@ -30639,7 +30767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(725), [sym_float_literal] = ACTIONS(725), }, - [182] = { + [183] = { [ts_builtin_sym_end] = ACTIONS(729), [sym_identifier] = ACTIONS(731), [anon_sym_SEMI] = ACTIONS(729), @@ -30734,7 +30862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(729), [sym_float_literal] = ACTIONS(729), }, - [183] = { + [184] = { [ts_builtin_sym_end] = ACTIONS(733), [sym_identifier] = ACTIONS(735), [anon_sym_SEMI] = ACTIONS(733), @@ -30829,342 +30957,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(733), [sym_float_literal] = ACTIONS(733), }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(737), - [sym_identifier] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_int] = ACTIONS(739), - [anon_sym_float] = ACTIONS(739), - [anon_sym_decimal] = ACTIONS(739), - [anon_sym_bool] = ACTIONS(739), - [anon_sym_string] = ACTIONS(739), - [anon_sym_channel] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(739), + [185] = { + [aux_sym__non_special_token_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_int] = ACTIONS(737), + [anon_sym_float] = ACTIONS(737), + [anon_sym_decimal] = ACTIONS(737), + [anon_sym_bool] = ACTIONS(737), + [anon_sym_string] = ACTIONS(737), + [anon_sym_channel] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym__] = ACTIONS(742), + [anon_sym_BSLASH] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(742), [anon_sym_EQ] = ACTIONS(739), + [anon_sym_DASH_GT] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), + [anon_sym_QMARK] = ACTIONS(739), [anon_sym_DOT] = ACTIONS(739), + [anon_sym_AT] = ACTIONS(739), [anon_sym_STAR] = ACTIONS(739), [anon_sym_AMP] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(737), + [anon_sym_POUND] = ACTIONS(739), [anon_sym_PERCENT] = ACTIONS(739), [anon_sym_CARET] = ACTIONS(739), [anon_sym_PLUS] = ACTIONS(739), [anon_sym_LT] = ACTIONS(739), [anon_sym_GT] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_SQUOTE] = ACTIONS(739), - [anon_sym_as] = ACTIONS(739), - [anon_sym_bench] = ACTIONS(739), - [anon_sym_break] = ACTIONS(739), - [anon_sym_const] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_defer] = ACTIONS(739), - [anon_sym_do] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(739), - [anon_sym_fn] = ACTIONS(739), - [anon_sym_for] = ACTIONS(739), - [anon_sym_if] = ACTIONS(739), - [anon_sym_impl] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(739), - [anon_sym_let] = ACTIONS(739), - [anon_sym_loop] = ACTIONS(739), - [anon_sym_pub] = ACTIONS(739), - [anon_sym_return] = ACTIONS(739), - [anon_sym_spawn] = ACTIONS(739), - [anon_sym_struct] = ACTIONS(739), - [anon_sym_switch] = ACTIONS(739), - [anon_sym_test] = ACTIONS(739), - [anon_sym_throw] = ACTIONS(739), - [anon_sym_try] = ACTIONS(739), - [anon_sym_type] = ACTIONS(739), - [anon_sym_use] = ACTIONS(739), - [anon_sym_while] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_DOT_DOT] = ACTIONS(737), - [anon_sym_try_BANG] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(739), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_AMP_EQ] = ACTIONS(737), - [anon_sym_PIPE_EQ] = ACTIONS(737), - [anon_sym_CARET_EQ] = ACTIONS(737), - [anon_sym_LT_LT_EQ] = ACTIONS(737), - [anon_sym_GT_GT_EQ] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_static] = ACTIONS(739), - [anon_sym_move] = ACTIONS(739), - [sym_integer_literal] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [sym_char_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(739), - [anon_sym_false] = ACTIONS(739), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(739), - [sym_self] = ACTIONS(739), - [sym_super] = ACTIONS(739), - [sym_crate] = ACTIONS(739), - [sym_metavariable] = ACTIONS(737), - [sym_raw_string_literal] = ACTIONS(737), - [sym_float_literal] = ACTIONS(737), - }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(741), - [sym_identifier] = ACTIONS(743), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_int] = ACTIONS(743), - [anon_sym_float] = ACTIONS(743), - [anon_sym_decimal] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_string] = ACTIONS(743), - [anon_sym_channel] = ACTIONS(743), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(743), - [anon_sym_AMP] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_as] = ACTIONS(743), - [anon_sym_bench] = ACTIONS(743), - [anon_sym_break] = ACTIONS(743), - [anon_sym_const] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(743), - [anon_sym_default] = ACTIONS(743), - [anon_sym_defer] = ACTIONS(743), - [anon_sym_do] = ACTIONS(743), - [anon_sym_enum] = ACTIONS(743), - [anon_sym_fn] = ACTIONS(743), - [anon_sym_for] = ACTIONS(743), - [anon_sym_if] = ACTIONS(743), - [anon_sym_impl] = ACTIONS(743), - [anon_sym_interface] = ACTIONS(743), - [anon_sym_let] = ACTIONS(743), - [anon_sym_loop] = ACTIONS(743), - [anon_sym_pub] = ACTIONS(743), - [anon_sym_return] = ACTIONS(743), - [anon_sym_spawn] = ACTIONS(743), - [anon_sym_struct] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(743), - [anon_sym_test] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_try] = ACTIONS(743), - [anon_sym_type] = ACTIONS(743), - [anon_sym_use] = ACTIONS(743), - [anon_sym_while] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_try_BANG] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(743), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_AMP_EQ] = ACTIONS(741), - [anon_sym_PIPE_EQ] = ACTIONS(741), - [anon_sym_CARET_EQ] = ACTIONS(741), - [anon_sym_LT_LT_EQ] = ACTIONS(741), - [anon_sym_GT_GT_EQ] = ACTIONS(741), - [anon_sym_yield] = ACTIONS(743), - [anon_sym_static] = ACTIONS(743), - [anon_sym_move] = ACTIONS(743), - [sym_integer_literal] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_char_literal] = ACTIONS(741), - [anon_sym_true] = ACTIONS(743), - [anon_sym_false] = ACTIONS(743), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(743), - [sym_self] = ACTIONS(743), - [sym_super] = ACTIONS(743), - [sym_crate] = ACTIONS(743), - [sym_metavariable] = ACTIONS(741), - [sym_raw_string_literal] = ACTIONS(741), - [sym_float_literal] = ACTIONS(741), - }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(745), - [sym_identifier] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_int] = ACTIONS(747), - [anon_sym_float] = ACTIONS(747), - [anon_sym_decimal] = ACTIONS(747), - [anon_sym_bool] = ACTIONS(747), - [anon_sym_string] = ACTIONS(747), - [anon_sym_channel] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(747), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(747), - [anon_sym_CARET] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(747), - [anon_sym_as] = ACTIONS(747), - [anon_sym_bench] = ACTIONS(747), - [anon_sym_break] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_continue] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_defer] = ACTIONS(747), - [anon_sym_do] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(747), - [anon_sym_for] = ACTIONS(747), - [anon_sym_if] = ACTIONS(747), - [anon_sym_impl] = ACTIONS(747), - [anon_sym_interface] = ACTIONS(747), - [anon_sym_let] = ACTIONS(747), - [anon_sym_loop] = ACTIONS(747), - [anon_sym_pub] = ACTIONS(747), - [anon_sym_return] = ACTIONS(747), - [anon_sym_spawn] = ACTIONS(747), - [anon_sym_struct] = ACTIONS(747), - [anon_sym_switch] = ACTIONS(747), - [anon_sym_test] = ACTIONS(747), - [anon_sym_throw] = ACTIONS(747), - [anon_sym_try] = ACTIONS(747), - [anon_sym_type] = ACTIONS(747), - [anon_sym_use] = ACTIONS(747), - [anon_sym_while] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_SQUOTE] = ACTIONS(737), + [anon_sym_as] = ACTIONS(737), + [anon_sym_assert] = ACTIONS(737), + [anon_sym_assert_eq] = ACTIONS(737), + [anon_sym_assert_ne] = ACTIONS(737), + [anon_sym_async] = ACTIONS(737), + [anon_sym_bench] = ACTIONS(737), + [anon_sym_break] = ACTIONS(737), + [anon_sym_case] = ACTIONS(737), + [anon_sym_catch] = ACTIONS(737), + [anon_sym_const] = ACTIONS(737), + [anon_sym_continue] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_defer] = ACTIONS(737), + [anon_sym_do] = ACTIONS(737), + [anon_sym_else] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(737), + [anon_sym_finally] = ACTIONS(737), + [anon_sym_fn] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_impl] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_let] = ACTIONS(737), + [anon_sym_loop] = ACTIONS(737), + [anon_sym_nil] = ACTIONS(737), + [anon_sym_panic] = ACTIONS(737), + [anon_sym_pub] = ACTIONS(737), + [anon_sym_return] = ACTIONS(737), + [anon_sym_select] = ACTIONS(737), + [anon_sym_spawn] = ACTIONS(737), + [anon_sym_struct] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(737), + [anon_sym_test] = ACTIONS(737), + [anon_sym_throw] = ACTIONS(737), + [anon_sym_throws] = ACTIONS(737), + [anon_sym_try] = ACTIONS(737), + [anon_sym_type] = ACTIONS(737), + [anon_sym_use] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), [anon_sym_LBRACK] = ACTIONS(745), + [anon_sym_RBRACK] = ACTIONS(745), [anon_sym_LBRACE] = ACTIONS(745), [anon_sym_RBRACE] = ACTIONS(745), [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_try_BANG] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(745), - [anon_sym_PIPE_PIPE] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(745), - [anon_sym_BANG_EQ] = ACTIONS(745), - [anon_sym_LT_EQ] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(745), - [anon_sym_LT_LT] = ACTIONS(747), - [anon_sym_GT_GT] = ACTIONS(747), - [anon_sym_PLUS_EQ] = ACTIONS(745), - [anon_sym_DASH_EQ] = ACTIONS(745), - [anon_sym_STAR_EQ] = ACTIONS(745), - [anon_sym_SLASH_EQ] = ACTIONS(745), - [anon_sym_PERCENT_EQ] = ACTIONS(745), - [anon_sym_AMP_EQ] = ACTIONS(745), - [anon_sym_PIPE_EQ] = ACTIONS(745), - [anon_sym_CARET_EQ] = ACTIONS(745), - [anon_sym_LT_LT_EQ] = ACTIONS(745), - [anon_sym_GT_GT_EQ] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(747), - [anon_sym_static] = ACTIONS(747), - [anon_sym_move] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(745), + [sym_mutable_specifier] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(745), [sym_integer_literal] = ACTIONS(745), [anon_sym_DQUOTE] = ACTIONS(745), [anon_sym_BQUOTE] = ACTIONS(745), [sym_char_literal] = ACTIONS(745), - [anon_sym_true] = ACTIONS(747), - [anon_sym_false] = ACTIONS(747), + [anon_sym_true] = ACTIONS(737), + [anon_sym_false] = ACTIONS(737), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(747), - [sym_self] = ACTIONS(747), - [sym_super] = ACTIONS(747), - [sym_crate] = ACTIONS(747), - [sym_metavariable] = ACTIONS(745), + [sym_self] = ACTIONS(737), + [sym_super] = ACTIONS(737), + [sym_crate] = ACTIONS(737), [sym_raw_string_literal] = ACTIONS(745), [sym_float_literal] = ACTIONS(745), }, - [187] = { - [aux_sym__non_special_token_repeat1] = STATE(189), + [186] = { + [ts_builtin_sym_end] = ACTIONS(747), [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_int] = ACTIONS(749), [anon_sym_float] = ACTIONS(749), [anon_sym_decimal] = ACTIONS(749), [anon_sym_bool] = ACTIONS(749), [anon_sym_string] = ACTIONS(749), [anon_sym_channel] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym__] = ACTIONS(753), - [anon_sym_BSLASH] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(751), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_EQ] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), + [anon_sym_BANG] = ACTIONS(749), + [anon_sym_DOT] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(749), [anon_sym_AMP] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(747), [anon_sym_PERCENT] = ACTIONS(751), [anon_sym_CARET] = ACTIONS(751), [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(749), [anon_sym_GT] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(749), [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_assert] = ACTIONS(749), - [anon_sym_assert_eq] = ACTIONS(749), - [anon_sym_assert_ne] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), + [anon_sym_as] = ACTIONS(751), [anon_sym_bench] = ACTIONS(749), [anon_sym_break] = ACTIONS(749), - [anon_sym_case] = ACTIONS(749), - [anon_sym_catch] = ACTIONS(749), [anon_sym_const] = ACTIONS(749), [anon_sym_continue] = ACTIONS(749), [anon_sym_default] = ACTIONS(749), [anon_sym_defer] = ACTIONS(749), [anon_sym_do] = ACTIONS(749), - [anon_sym_else] = ACTIONS(749), [anon_sym_enum] = ACTIONS(749), - [anon_sym_finally] = ACTIONS(749), [anon_sym_fn] = ACTIONS(749), [anon_sym_for] = ACTIONS(749), [anon_sym_if] = ACTIONS(749), @@ -31172,189 +31093,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(749), [anon_sym_let] = ACTIONS(749), [anon_sym_loop] = ACTIONS(749), - [anon_sym_nil] = ACTIONS(749), - [anon_sym_panic] = ACTIONS(749), [anon_sym_pub] = ACTIONS(749), [anon_sym_return] = ACTIONS(749), - [anon_sym_select] = ACTIONS(749), [anon_sym_spawn] = ACTIONS(749), [anon_sym_struct] = ACTIONS(749), [anon_sym_switch] = ACTIONS(749), [anon_sym_test] = ACTIONS(749), [anon_sym_throw] = ACTIONS(749), - [anon_sym_throws] = ACTIONS(749), [anon_sym_try] = ACTIONS(749), [anon_sym_type] = ACTIONS(749), [anon_sym_use] = ACTIONS(749), [anon_sym_while] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_DOT_DOT] = ACTIONS(747), + [anon_sym_try_BANG] = ACTIONS(747), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(753), + [anon_sym_BANG_EQ] = ACTIONS(753), + [anon_sym_LT_EQ] = ACTIONS(753), + [anon_sym_GT_EQ] = ACTIONS(753), + [anon_sym_LT_LT] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(751), + [anon_sym_PLUS_EQ] = ACTIONS(753), + [anon_sym_DASH_EQ] = ACTIONS(753), + [anon_sym_STAR_EQ] = ACTIONS(753), + [anon_sym_SLASH_EQ] = ACTIONS(753), + [anon_sym_PERCENT_EQ] = ACTIONS(753), + [anon_sym_AMP_EQ] = ACTIONS(753), + [anon_sym_PIPE_EQ] = ACTIONS(753), + [anon_sym_CARET_EQ] = ACTIONS(753), + [anon_sym_LT_LT_EQ] = ACTIONS(753), + [anon_sym_GT_GT_EQ] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(749), + [anon_sym_static] = ACTIONS(749), + [anon_sym_move] = ACTIONS(749), + [sym_integer_literal] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [sym_char_literal] = ACTIONS(747), + [anon_sym_true] = ACTIONS(749), + [anon_sym_false] = ACTIONS(749), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(749), + [sym_self] = ACTIONS(749), + [sym_super] = ACTIONS(749), + [sym_crate] = ACTIONS(749), + [sym_metavariable] = ACTIONS(747), + [sym_raw_string_literal] = ACTIONS(747), + [sym_float_literal] = ACTIONS(747), + }, + [187] = { + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_int] = ACTIONS(757), + [anon_sym_float] = ACTIONS(757), + [anon_sym_decimal] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_string] = ACTIONS(757), + [anon_sym_channel] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_DOT] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(757), + [anon_sym_CARET] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(757), + [anon_sym_as] = ACTIONS(757), + [anon_sym_bench] = ACTIONS(757), + [anon_sym_break] = ACTIONS(757), + [anon_sym_const] = ACTIONS(757), + [anon_sym_continue] = ACTIONS(757), + [anon_sym_default] = ACTIONS(757), + [anon_sym_defer] = ACTIONS(757), + [anon_sym_do] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_fn] = ACTIONS(757), + [anon_sym_for] = ACTIONS(757), + [anon_sym_if] = ACTIONS(757), + [anon_sym_impl] = ACTIONS(757), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_let] = ACTIONS(757), + [anon_sym_loop] = ACTIONS(757), + [anon_sym_pub] = ACTIONS(757), + [anon_sym_return] = ACTIONS(757), + [anon_sym_spawn] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_switch] = ACTIONS(757), + [anon_sym_test] = ACTIONS(757), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_try] = ACTIONS(757), + [anon_sym_type] = ACTIONS(757), + [anon_sym_use] = ACTIONS(757), + [anon_sym_while] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), [anon_sym_LBRACE] = ACTIONS(755), [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [sym_mutable_specifier] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(755), + [anon_sym_try_BANG] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_LT_LT] = ACTIONS(757), + [anon_sym_GT_GT] = ACTIONS(757), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_AMP_EQ] = ACTIONS(755), + [anon_sym_PIPE_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_LT_LT_EQ] = ACTIONS(755), + [anon_sym_GT_GT_EQ] = ACTIONS(755), + [anon_sym_yield] = ACTIONS(757), + [anon_sym_static] = ACTIONS(757), + [anon_sym_move] = ACTIONS(757), [sym_integer_literal] = ACTIONS(755), [anon_sym_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(755), [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), + [anon_sym_true] = ACTIONS(757), + [anon_sym_false] = ACTIONS(757), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), + [anon_sym_union] = ACTIONS(757), + [sym_self] = ACTIONS(757), + [sym_super] = ACTIONS(757), + [sym_crate] = ACTIONS(757), + [sym_metavariable] = ACTIONS(755), [sym_raw_string_literal] = ACTIONS(755), [sym_float_literal] = ACTIONS(755), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(757), - [sym_identifier] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_int] = ACTIONS(759), - [anon_sym_float] = ACTIONS(759), - [anon_sym_decimal] = ACTIONS(759), - [anon_sym_bool] = ACTIONS(759), - [anon_sym_string] = ACTIONS(759), - [anon_sym_channel] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_as] = ACTIONS(759), - [anon_sym_bench] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_defer] = ACTIONS(759), - [anon_sym_do] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_fn] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_impl] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(759), - [anon_sym_let] = ACTIONS(759), - [anon_sym_loop] = ACTIONS(759), - [anon_sym_pub] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_spawn] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(759), - [anon_sym_test] = ACTIONS(759), - [anon_sym_throw] = ACTIONS(759), - [anon_sym_try] = ACTIONS(759), - [anon_sym_type] = ACTIONS(759), - [anon_sym_use] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_try_BANG] = ACTIONS(757), - [anon_sym_AMP_AMP] = ACTIONS(757), - [anon_sym_PIPE_PIPE] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(757), - [anon_sym_BANG_EQ] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(759), - [anon_sym_PLUS_EQ] = ACTIONS(757), - [anon_sym_DASH_EQ] = ACTIONS(757), - [anon_sym_STAR_EQ] = ACTIONS(757), - [anon_sym_SLASH_EQ] = ACTIONS(757), - [anon_sym_PERCENT_EQ] = ACTIONS(757), - [anon_sym_AMP_EQ] = ACTIONS(757), - [anon_sym_PIPE_EQ] = ACTIONS(757), - [anon_sym_CARET_EQ] = ACTIONS(757), - [anon_sym_LT_LT_EQ] = ACTIONS(757), - [anon_sym_GT_GT_EQ] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(759), - [anon_sym_static] = ACTIONS(759), - [anon_sym_move] = ACTIONS(759), - [sym_integer_literal] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_BQUOTE] = ACTIONS(757), - [sym_char_literal] = ACTIONS(757), - [anon_sym_true] = ACTIONS(759), - [anon_sym_false] = ACTIONS(759), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(759), - [sym_self] = ACTIONS(759), - [sym_super] = ACTIONS(759), - [sym_crate] = ACTIONS(759), - [sym_metavariable] = ACTIONS(757), - [sym_raw_string_literal] = ACTIONS(757), - [sym_float_literal] = ACTIONS(757), - }, - [189] = { - [aux_sym__non_special_token_repeat1] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(759), [sym_identifier] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(759), [anon_sym_int] = ACTIONS(761), [anon_sym_float] = ACTIONS(761), [anon_sym_decimal] = ACTIONS(761), [anon_sym_bool] = ACTIONS(761), [anon_sym_string] = ACTIONS(761), [anon_sym_channel] = ACTIONS(761), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym__] = ACTIONS(766), - [anon_sym_BSLASH] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_DASH_GT] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_COLON_COLON] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), [anon_sym_SQUOTE] = ACTIONS(761), [anon_sym_as] = ACTIONS(761), - [anon_sym_assert] = ACTIONS(761), - [anon_sym_assert_eq] = ACTIONS(761), - [anon_sym_assert_ne] = ACTIONS(761), - [anon_sym_async] = ACTIONS(761), [anon_sym_bench] = ACTIONS(761), [anon_sym_break] = ACTIONS(761), - [anon_sym_case] = ACTIONS(761), - [anon_sym_catch] = ACTIONS(761), [anon_sym_const] = ACTIONS(761), [anon_sym_continue] = ACTIONS(761), [anon_sym_default] = ACTIONS(761), [anon_sym_defer] = ACTIONS(761), [anon_sym_do] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), [anon_sym_enum] = ACTIONS(761), - [anon_sym_finally] = ACTIONS(761), [anon_sym_fn] = ACTIONS(761), [anon_sym_for] = ACTIONS(761), [anon_sym_if] = ACTIONS(761), @@ -31362,44 +31283,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(761), [anon_sym_let] = ACTIONS(761), [anon_sym_loop] = ACTIONS(761), - [anon_sym_nil] = ACTIONS(761), - [anon_sym_panic] = ACTIONS(761), [anon_sym_pub] = ACTIONS(761), [anon_sym_return] = ACTIONS(761), - [anon_sym_select] = ACTIONS(761), [anon_sym_spawn] = ACTIONS(761), [anon_sym_struct] = ACTIONS(761), [anon_sym_switch] = ACTIONS(761), [anon_sym_test] = ACTIONS(761), [anon_sym_throw] = ACTIONS(761), - [anon_sym_throws] = ACTIONS(761), [anon_sym_try] = ACTIONS(761), [anon_sym_type] = ACTIONS(761), [anon_sym_use] = ACTIONS(761), [anon_sym_while] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [sym_mutable_specifier] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(769), - [sym_integer_literal] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(759), + [anon_sym_try_BANG] = ACTIONS(759), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_LT_LT] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_AMP_EQ] = ACTIONS(759), + [anon_sym_PIPE_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(759), + [anon_sym_GT_GT_EQ] = ACTIONS(759), + [anon_sym_yield] = ACTIONS(761), + [anon_sym_static] = ACTIONS(761), + [anon_sym_move] = ACTIONS(761), + [sym_integer_literal] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_BQUOTE] = ACTIONS(759), + [sym_char_literal] = ACTIONS(759), [anon_sym_true] = ACTIONS(761), [anon_sym_false] = ACTIONS(761), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(761), [sym_self] = ACTIONS(761), [sym_super] = ACTIONS(761), [sym_crate] = ACTIONS(761), - [sym_raw_string_literal] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), + [sym_metavariable] = ACTIONS(759), + [sym_raw_string_literal] = ACTIONS(759), + [sym_float_literal] = ACTIONS(759), + }, + [189] = { + [ts_builtin_sym_end] = ACTIONS(763), + [sym_identifier] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_int] = ACTIONS(765), + [anon_sym_float] = ACTIONS(765), + [anon_sym_decimal] = ACTIONS(765), + [anon_sym_bool] = ACTIONS(765), + [anon_sym_string] = ACTIONS(765), + [anon_sym_channel] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_AMP] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_as] = ACTIONS(765), + [anon_sym_bench] = ACTIONS(765), + [anon_sym_break] = ACTIONS(765), + [anon_sym_const] = ACTIONS(765), + [anon_sym_continue] = ACTIONS(765), + [anon_sym_default] = ACTIONS(765), + [anon_sym_defer] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_fn] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_impl] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_let] = ACTIONS(765), + [anon_sym_loop] = ACTIONS(765), + [anon_sym_pub] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_spawn] = ACTIONS(765), + [anon_sym_struct] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_test] = ACTIONS(765), + [anon_sym_throw] = ACTIONS(765), + [anon_sym_try] = ACTIONS(765), + [anon_sym_type] = ACTIONS(765), + [anon_sym_use] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_try_BANG] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(763), + [anon_sym_BANG_EQ] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(763), + [anon_sym_DASH_EQ] = ACTIONS(763), + [anon_sym_STAR_EQ] = ACTIONS(763), + [anon_sym_SLASH_EQ] = ACTIONS(763), + [anon_sym_PERCENT_EQ] = ACTIONS(763), + [anon_sym_AMP_EQ] = ACTIONS(763), + [anon_sym_PIPE_EQ] = ACTIONS(763), + [anon_sym_CARET_EQ] = ACTIONS(763), + [anon_sym_LT_LT_EQ] = ACTIONS(763), + [anon_sym_GT_GT_EQ] = ACTIONS(763), + [anon_sym_yield] = ACTIONS(765), + [anon_sym_static] = ACTIONS(765), + [anon_sym_move] = ACTIONS(765), + [sym_integer_literal] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_BQUOTE] = ACTIONS(763), + [sym_char_literal] = ACTIONS(763), + [anon_sym_true] = ACTIONS(765), + [anon_sym_false] = ACTIONS(765), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(765), + [sym_self] = ACTIONS(765), + [sym_super] = ACTIONS(765), + [sym_crate] = ACTIONS(765), + [sym_metavariable] = ACTIONS(763), + [sym_raw_string_literal] = ACTIONS(763), + [sym_float_literal] = ACTIONS(763), }, [190] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_int] = ACTIONS(769), + [anon_sym_float] = ACTIONS(769), + [anon_sym_decimal] = ACTIONS(769), + [anon_sym_bool] = ACTIONS(769), + [anon_sym_string] = ACTIONS(769), + [anon_sym_channel] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_as] = ACTIONS(769), + [anon_sym_bench] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_default] = ACTIONS(769), + [anon_sym_defer] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_enum] = ACTIONS(769), + [anon_sym_fn] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_impl] = ACTIONS(769), + [anon_sym_interface] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_pub] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_spawn] = ACTIONS(769), + [anon_sym_struct] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_test] = ACTIONS(769), + [anon_sym_throw] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_type] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_try_BANG] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(767), + [anon_sym_BANG_EQ] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(767), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(767), + [anon_sym_DASH_EQ] = ACTIONS(767), + [anon_sym_STAR_EQ] = ACTIONS(767), + [anon_sym_SLASH_EQ] = ACTIONS(767), + [anon_sym_PERCENT_EQ] = ACTIONS(767), + [anon_sym_AMP_EQ] = ACTIONS(767), + [anon_sym_PIPE_EQ] = ACTIONS(767), + [anon_sym_CARET_EQ] = ACTIONS(767), + [anon_sym_LT_LT_EQ] = ACTIONS(767), + [anon_sym_GT_GT_EQ] = ACTIONS(767), + [anon_sym_yield] = ACTIONS(769), + [anon_sym_static] = ACTIONS(769), + [anon_sym_move] = ACTIONS(769), + [sym_integer_literal] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(767), + [anon_sym_BQUOTE] = ACTIONS(767), + [sym_char_literal] = ACTIONS(767), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(769), + [sym_self] = ACTIONS(769), + [sym_super] = ACTIONS(769), + [sym_crate] = ACTIONS(769), + [sym_metavariable] = ACTIONS(767), + [sym_raw_string_literal] = ACTIONS(767), + [sym_float_literal] = ACTIONS(767), + }, + [191] = { [ts_builtin_sym_end] = ACTIONS(771), [sym_identifier] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(771), @@ -31494,7 +31622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(771), [sym_float_literal] = ACTIONS(771), }, - [191] = { + [192] = { [ts_builtin_sym_end] = ACTIONS(775), [sym_identifier] = ACTIONS(777), [anon_sym_SEMI] = ACTIONS(775), @@ -31589,7 +31717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(775), [sym_float_literal] = ACTIONS(775), }, - [192] = { + [193] = { [ts_builtin_sym_end] = ACTIONS(779), [sym_identifier] = ACTIONS(781), [anon_sym_SEMI] = ACTIONS(779), @@ -31684,7 +31812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(779), [sym_float_literal] = ACTIONS(779), }, - [193] = { + [194] = { [ts_builtin_sym_end] = ACTIONS(783), [sym_identifier] = ACTIONS(785), [anon_sym_SEMI] = ACTIONS(783), @@ -31694,22 +31822,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(785), [anon_sym_string] = ACTIONS(785), [anon_sym_channel] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(785), [anon_sym_DASH] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(785), [anon_sym_BANG] = ACTIONS(785), [anon_sym_DOT] = ACTIONS(785), [anon_sym_STAR] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(785), [anon_sym_POUND] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_CARET] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(785), [anon_sym_LT] = ACTIONS(785), - [anon_sym_GT] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(785), [anon_sym_PIPE] = ACTIONS(785), [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_as] = ACTIONS(787), + [anon_sym_as] = ACTIONS(785), [anon_sym_bench] = ACTIONS(785), [anon_sym_break] = ACTIONS(785), [anon_sym_const] = ACTIONS(785), @@ -31742,24 +31870,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(783), [anon_sym_DOT_DOT] = ACTIONS(783), [anon_sym_try_BANG] = ACTIONS(783), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_PLUS_EQ] = ACTIONS(789), - [anon_sym_DASH_EQ] = ACTIONS(789), - [anon_sym_STAR_EQ] = ACTIONS(789), - [anon_sym_SLASH_EQ] = ACTIONS(789), - [anon_sym_PERCENT_EQ] = ACTIONS(789), - [anon_sym_AMP_EQ] = ACTIONS(789), - [anon_sym_PIPE_EQ] = ACTIONS(789), - [anon_sym_CARET_EQ] = ACTIONS(789), - [anon_sym_LT_LT_EQ] = ACTIONS(789), - [anon_sym_GT_GT_EQ] = ACTIONS(789), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(783), + [anon_sym_DASH_EQ] = ACTIONS(783), + [anon_sym_STAR_EQ] = ACTIONS(783), + [anon_sym_SLASH_EQ] = ACTIONS(783), + [anon_sym_PERCENT_EQ] = ACTIONS(783), + [anon_sym_AMP_EQ] = ACTIONS(783), + [anon_sym_PIPE_EQ] = ACTIONS(783), + [anon_sym_CARET_EQ] = ACTIONS(783), + [anon_sym_LT_LT_EQ] = ACTIONS(783), + [anon_sym_GT_GT_EQ] = ACTIONS(783), [anon_sym_yield] = ACTIONS(785), [anon_sym_static] = ACTIONS(785), [anon_sym_move] = ACTIONS(785), @@ -31779,7 +31907,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(783), [sym_float_literal] = ACTIONS(783), }, - [194] = { + [195] = { + [ts_builtin_sym_end] = ACTIONS(787), + [sym_identifier] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_int] = ACTIONS(789), + [anon_sym_float] = ACTIONS(789), + [anon_sym_decimal] = ACTIONS(789), + [anon_sym_bool] = ACTIONS(789), + [anon_sym_string] = ACTIONS(789), + [anon_sym_channel] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_EQ] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(789), + [anon_sym_as] = ACTIONS(789), + [anon_sym_bench] = ACTIONS(789), + [anon_sym_break] = ACTIONS(789), + [anon_sym_const] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(789), + [anon_sym_default] = ACTIONS(789), + [anon_sym_defer] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(789), + [anon_sym_fn] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_impl] = ACTIONS(789), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_let] = ACTIONS(789), + [anon_sym_loop] = ACTIONS(789), + [anon_sym_pub] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_spawn] = ACTIONS(789), + [anon_sym_struct] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_test] = ACTIONS(789), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_try] = ACTIONS(789), + [anon_sym_type] = ACTIONS(789), + [anon_sym_use] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_try_BANG] = ACTIONS(787), + [anon_sym_AMP_AMP] = ACTIONS(787), + [anon_sym_PIPE_PIPE] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(787), + [anon_sym_LT_LT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_PLUS_EQ] = ACTIONS(787), + [anon_sym_DASH_EQ] = ACTIONS(787), + [anon_sym_STAR_EQ] = ACTIONS(787), + [anon_sym_SLASH_EQ] = ACTIONS(787), + [anon_sym_PERCENT_EQ] = ACTIONS(787), + [anon_sym_AMP_EQ] = ACTIONS(787), + [anon_sym_PIPE_EQ] = ACTIONS(787), + [anon_sym_CARET_EQ] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(787), + [anon_sym_GT_GT_EQ] = ACTIONS(787), + [anon_sym_yield] = ACTIONS(789), + [anon_sym_static] = ACTIONS(789), + [anon_sym_move] = ACTIONS(789), + [sym_integer_literal] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [anon_sym_BQUOTE] = ACTIONS(787), + [sym_char_literal] = ACTIONS(787), + [anon_sym_true] = ACTIONS(789), + [anon_sym_false] = ACTIONS(789), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(789), + [sym_self] = ACTIONS(789), + [sym_super] = ACTIONS(789), + [sym_crate] = ACTIONS(789), + [sym_metavariable] = ACTIONS(787), + [sym_raw_string_literal] = ACTIONS(787), + [sym_float_literal] = ACTIONS(787), + }, + [196] = { [sym_identifier] = ACTIONS(791), [anon_sym_SEMI] = ACTIONS(793), [anon_sym_int] = ACTIONS(791), @@ -31873,7 +32096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(793), [sym_float_literal] = ACTIONS(793), }, - [195] = { + [197] = { [sym_identifier] = ACTIONS(795), [anon_sym_SEMI] = ACTIONS(797), [anon_sym_int] = ACTIONS(795), @@ -31967,7 +32190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(797), [sym_float_literal] = ACTIONS(797), }, - [196] = { + [198] = { [sym_identifier] = ACTIONS(799), [anon_sym_SEMI] = ACTIONS(801), [anon_sym_int] = ACTIONS(799), @@ -32061,7 +32284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(801), [sym_float_literal] = ACTIONS(801), }, - [197] = { + [199] = { [sym_identifier] = ACTIONS(803), [anon_sym_SEMI] = ACTIONS(805), [anon_sym_int] = ACTIONS(803), @@ -32155,7 +32378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(805), [sym_float_literal] = ACTIONS(805), }, - [198] = { + [200] = { [sym_identifier] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_int] = ACTIONS(807), @@ -32249,7 +32472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(809), [sym_float_literal] = ACTIONS(809), }, - [199] = { + [201] = { [sym_identifier] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), [anon_sym_int] = ACTIONS(811), @@ -32343,7 +32566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(813), [sym_float_literal] = ACTIONS(813), }, - [200] = { + [202] = { [sym_identifier] = ACTIONS(815), [anon_sym_SEMI] = ACTIONS(817), [anon_sym_int] = ACTIONS(815), @@ -32437,7 +32660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(817), [sym_float_literal] = ACTIONS(817), }, - [201] = { + [203] = { [sym_identifier] = ACTIONS(819), [anon_sym_SEMI] = ACTIONS(821), [anon_sym_int] = ACTIONS(819), @@ -32531,7 +32754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(821), [sym_float_literal] = ACTIONS(821), }, - [202] = { + [204] = { [sym_identifier] = ACTIONS(823), [anon_sym_SEMI] = ACTIONS(825), [anon_sym_int] = ACTIONS(823), @@ -32625,7 +32848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(825), [sym_float_literal] = ACTIONS(825), }, - [203] = { + [205] = { [sym_identifier] = ACTIONS(827), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_int] = ACTIONS(827), @@ -32710,29 +32933,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(829), [sym_float_literal] = ACTIONS(829), }, - [204] = { - [sym_bracketed_type] = STATE(1353), - [sym_generic_type] = STATE(1434), - [sym_generic_type_with_turbofish] = STATE(1405), - [sym_scoped_identifier] = STATE(842), - [sym_scoped_type_identifier] = STATE(1133), - [sym_const_block] = STATE(918), - [sym__pattern] = STATE(901), - [sym_tuple_pattern] = STATE(918), - [sym_slice_pattern] = STATE(918), - [sym_struct_pattern] = STATE(918), - [sym_remaining_field_pattern] = STATE(918), - [sym_mut_pattern] = STATE(918), - [sym_range_pattern] = STATE(918), - [sym_ref_pattern] = STATE(918), - [sym_captured_pattern] = STATE(918), - [sym_reference_pattern] = STATE(918), - [sym_or_pattern] = STATE(918), - [sym__literal_pattern] = STATE(865), - [sym_negative_literal] = STATE(864), - [sym_string_literal] = STATE(864), - [sym_string_template] = STATE(864), - [sym_boolean_literal] = STATE(864), + [206] = { + [sym_bracketed_type] = STATE(1407), + [sym_generic_type] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(1409), + [sym_scoped_identifier] = STATE(838), + [sym_scoped_type_identifier] = STATE(1232), + [sym_const_block] = STATE(897), + [sym__pattern] = STATE(895), + [sym_tuple_pattern] = STATE(897), + [sym_slice_pattern] = STATE(897), + [sym_struct_pattern] = STATE(897), + [sym_remaining_field_pattern] = STATE(897), + [sym_mut_pattern] = STATE(897), + [sym_range_pattern] = STATE(897), + [sym_ref_pattern] = STATE(897), + [sym_captured_pattern] = STATE(897), + [sym_reference_pattern] = STATE(897), + [sym_or_pattern] = STATE(897), + [sym__literal_pattern] = STATE(867), + [sym_negative_literal] = STATE(868), + [sym_string_literal] = STATE(868), + [sym_string_template] = STATE(868), + [sym_boolean_literal] = STATE(868), [sym_identifier] = ACTIONS(831), [anon_sym_int] = ACTIONS(831), [anon_sym_float] = ACTIONS(831), @@ -32790,7 +33013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(833), [sym_float_literal] = ACTIONS(833), }, - [205] = { + [207] = { [ts_builtin_sym_end] = ACTIONS(841), [sym_identifier] = ACTIONS(843), [anon_sym_SEMI] = ACTIONS(841), @@ -32859,7 +33082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(841), }, - [206] = { + [208] = { [ts_builtin_sym_end] = ACTIONS(845), [sym_identifier] = ACTIONS(847), [anon_sym_SEMI] = ACTIONS(845), @@ -32928,7 +33151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(845), [sym_float_literal] = ACTIONS(845), }, - [207] = { + [209] = { [ts_builtin_sym_end] = ACTIONS(849), [sym_identifier] = ACTIONS(851), [anon_sym_SEMI] = ACTIONS(849), @@ -32997,7 +33220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(849), [sym_float_literal] = ACTIONS(849), }, - [208] = { + [210] = { [ts_builtin_sym_end] = ACTIONS(853), [sym_identifier] = ACTIONS(855), [anon_sym_SEMI] = ACTIONS(853), @@ -33066,7 +33289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(853), [sym_float_literal] = ACTIONS(853), }, - [209] = { + [211] = { [ts_builtin_sym_end] = ACTIONS(857), [sym_identifier] = ACTIONS(859), [anon_sym_SEMI] = ACTIONS(857), @@ -33135,7 +33358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(857), [sym_float_literal] = ACTIONS(857), }, - [210] = { + [212] = { [ts_builtin_sym_end] = ACTIONS(861), [sym_identifier] = ACTIONS(863), [anon_sym_SEMI] = ACTIONS(861), @@ -33204,7 +33427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(861), [sym_float_literal] = ACTIONS(861), }, - [211] = { + [213] = { [ts_builtin_sym_end] = ACTIONS(865), [sym_identifier] = ACTIONS(867), [anon_sym_SEMI] = ACTIONS(865), @@ -33273,7 +33496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(865), [sym_float_literal] = ACTIONS(865), }, - [212] = { + [214] = { [ts_builtin_sym_end] = ACTIONS(869), [sym_identifier] = ACTIONS(871), [anon_sym_SEMI] = ACTIONS(869), @@ -33342,7 +33565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(869), [sym_float_literal] = ACTIONS(869), }, - [213] = { + [215] = { [ts_builtin_sym_end] = ACTIONS(873), [sym_identifier] = ACTIONS(875), [anon_sym_SEMI] = ACTIONS(873), @@ -33411,7 +33634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(873), [sym_float_literal] = ACTIONS(873), }, - [214] = { + [216] = { [ts_builtin_sym_end] = ACTIONS(877), [sym_identifier] = ACTIONS(879), [anon_sym_SEMI] = ACTIONS(877), @@ -33480,7 +33703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(877), [sym_float_literal] = ACTIONS(877), }, - [215] = { + [217] = { [ts_builtin_sym_end] = ACTIONS(881), [sym_identifier] = ACTIONS(883), [anon_sym_SEMI] = ACTIONS(881), @@ -33549,7 +33772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(881), [sym_float_literal] = ACTIONS(881), }, - [216] = { + [218] = { [ts_builtin_sym_end] = ACTIONS(885), [sym_identifier] = ACTIONS(887), [anon_sym_SEMI] = ACTIONS(885), @@ -33618,7 +33841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(885), [sym_float_literal] = ACTIONS(885), }, - [217] = { + [219] = { [ts_builtin_sym_end] = ACTIONS(889), [sym_identifier] = ACTIONS(891), [anon_sym_SEMI] = ACTIONS(889), @@ -33687,7 +33910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(889), [sym_float_literal] = ACTIONS(889), }, - [218] = { + [220] = { [ts_builtin_sym_end] = ACTIONS(893), [sym_identifier] = ACTIONS(895), [anon_sym_SEMI] = ACTIONS(893), @@ -33756,7 +33979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(893), [sym_float_literal] = ACTIONS(893), }, - [219] = { + [221] = { [ts_builtin_sym_end] = ACTIONS(897), [sym_identifier] = ACTIONS(899), [anon_sym_SEMI] = ACTIONS(897), @@ -33825,76 +34048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(897), [sym_float_literal] = ACTIONS(897), }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(673), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(673), - [anon_sym_int] = ACTIONS(675), - [anon_sym_float] = ACTIONS(675), - [anon_sym_decimal] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_channel] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_POUND] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_bench] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_defer] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_interface] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_spawn] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(675), - [anon_sym_test] = ACTIONS(675), - [anon_sym_throw] = ACTIONS(675), - [anon_sym_try] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(673), - [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(673), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_try_BANG] = ACTIONS(673), - [anon_sym_yield] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_move] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_BQUOTE] = ACTIONS(673), - [sym_char_literal] = ACTIONS(673), - [anon_sym_true] = ACTIONS(675), - [anon_sym_false] = ACTIONS(675), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(675), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym_metavariable] = ACTIONS(673), - [sym_raw_string_literal] = ACTIONS(673), - [sym_float_literal] = ACTIONS(673), - }, - [221] = { + [222] = { [ts_builtin_sym_end] = ACTIONS(901), [sym_identifier] = ACTIONS(903), [anon_sym_SEMI] = ACTIONS(901), @@ -33963,75 +34117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(901), [sym_float_literal] = ACTIONS(901), }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(691), - [sym_identifier] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_int] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_decimal] = ACTIONS(693), - [anon_sym_bool] = ACTIONS(693), - [anon_sym_string] = ACTIONS(693), - [anon_sym_channel] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_POUND] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_bench] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_const] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_defer] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_fn] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_impl] = ACTIONS(693), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_let] = ACTIONS(693), - [anon_sym_loop] = ACTIONS(693), - [anon_sym_pub] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_spawn] = ACTIONS(693), - [anon_sym_struct] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_test] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_type] = ACTIONS(693), - [anon_sym_use] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_DOT_DOT] = ACTIONS(691), - [anon_sym_try_BANG] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_move] = ACTIONS(693), - [sym_integer_literal] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(691), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(693), - [anon_sym_false] = ACTIONS(693), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(693), - [sym_self] = ACTIONS(693), - [sym_super] = ACTIONS(693), - [sym_crate] = ACTIONS(693), - [sym_metavariable] = ACTIONS(691), - [sym_raw_string_literal] = ACTIONS(691), - [sym_float_literal] = ACTIONS(691), - }, [223] = { [ts_builtin_sym_end] = ACTIONS(905), [sym_identifier] = ACTIONS(907), @@ -34102,75 +34187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(905), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(695), - [sym_identifier] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_int] = ACTIONS(697), - [anon_sym_float] = ACTIONS(697), - [anon_sym_decimal] = ACTIONS(697), - [anon_sym_bool] = ACTIONS(697), - [anon_sym_string] = ACTIONS(697), - [anon_sym_channel] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_POUND] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_bench] = ACTIONS(697), - [anon_sym_break] = ACTIONS(697), - [anon_sym_const] = ACTIONS(697), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_default] = ACTIONS(697), - [anon_sym_defer] = ACTIONS(697), - [anon_sym_do] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(697), - [anon_sym_for] = ACTIONS(697), - [anon_sym_if] = ACTIONS(697), - [anon_sym_impl] = ACTIONS(697), - [anon_sym_interface] = ACTIONS(697), - [anon_sym_let] = ACTIONS(697), - [anon_sym_loop] = ACTIONS(697), - [anon_sym_pub] = ACTIONS(697), - [anon_sym_return] = ACTIONS(697), - [anon_sym_spawn] = ACTIONS(697), - [anon_sym_struct] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(697), - [anon_sym_test] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(697), - [anon_sym_try] = ACTIONS(697), - [anon_sym_type] = ACTIONS(697), - [anon_sym_use] = ACTIONS(697), - [anon_sym_while] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_try_BANG] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_static] = ACTIONS(697), - [anon_sym_move] = ACTIONS(697), - [sym_integer_literal] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [sym_char_literal] = ACTIONS(695), - [anon_sym_true] = ACTIONS(697), - [anon_sym_false] = ACTIONS(697), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(697), - [sym_self] = ACTIONS(697), - [sym_super] = ACTIONS(697), - [sym_crate] = ACTIONS(697), - [sym_metavariable] = ACTIONS(695), - [sym_raw_string_literal] = ACTIONS(695), - [sym_float_literal] = ACTIONS(695), - }, - [225] = { [ts_builtin_sym_end] = ACTIONS(909), [sym_identifier] = ACTIONS(911), [anon_sym_SEMI] = ACTIONS(909), @@ -34239,7 +34255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(909), [sym_float_literal] = ACTIONS(909), }, - [226] = { + [225] = { [ts_builtin_sym_end] = ACTIONS(913), [sym_identifier] = ACTIONS(915), [anon_sym_SEMI] = ACTIONS(913), @@ -34308,7 +34324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(913), [sym_float_literal] = ACTIONS(913), }, - [227] = { + [226] = { [ts_builtin_sym_end] = ACTIONS(917), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(917), @@ -34377,76 +34393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(917), [sym_float_literal] = ACTIONS(917), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_int] = ACTIONS(689), - [anon_sym_float] = ACTIONS(689), - [anon_sym_decimal] = ACTIONS(689), - [anon_sym_bool] = ACTIONS(689), - [anon_sym_string] = ACTIONS(689), - [anon_sym_channel] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(689), - [anon_sym_bench] = ACTIONS(689), - [anon_sym_break] = ACTIONS(689), - [anon_sym_const] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_default] = ACTIONS(689), - [anon_sym_defer] = ACTIONS(689), - [anon_sym_do] = ACTIONS(689), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_fn] = ACTIONS(689), - [anon_sym_for] = ACTIONS(689), - [anon_sym_if] = ACTIONS(689), - [anon_sym_impl] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(689), - [anon_sym_let] = ACTIONS(689), - [anon_sym_loop] = ACTIONS(689), - [anon_sym_pub] = ACTIONS(689), - [anon_sym_return] = ACTIONS(689), - [anon_sym_spawn] = ACTIONS(689), - [anon_sym_struct] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_test] = ACTIONS(689), - [anon_sym_throw] = ACTIONS(689), - [anon_sym_try] = ACTIONS(689), - [anon_sym_type] = ACTIONS(689), - [anon_sym_use] = ACTIONS(689), - [anon_sym_while] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_try_BANG] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_static] = ACTIONS(689), - [anon_sym_move] = ACTIONS(689), - [sym_integer_literal] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_BQUOTE] = ACTIONS(687), - [sym_char_literal] = ACTIONS(687), - [anon_sym_true] = ACTIONS(689), - [anon_sym_false] = ACTIONS(689), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(689), - [sym_self] = ACTIONS(689), - [sym_super] = ACTIONS(689), - [sym_crate] = ACTIONS(689), - [sym_metavariable] = ACTIONS(687), - [sym_raw_string_literal] = ACTIONS(687), - [sym_float_literal] = ACTIONS(687), - }, - [229] = { + [227] = { [ts_builtin_sym_end] = ACTIONS(921), [sym_identifier] = ACTIONS(923), [anon_sym_SEMI] = ACTIONS(921), @@ -34515,7 +34462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(921), [sym_float_literal] = ACTIONS(921), }, - [230] = { + [228] = { [ts_builtin_sym_end] = ACTIONS(925), [sym_identifier] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(925), @@ -34584,7 +34531,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(925), [sym_float_literal] = ACTIONS(925), }, + [229] = { + [ts_builtin_sym_end] = ACTIONS(681), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_int] = ACTIONS(683), + [anon_sym_float] = ACTIONS(683), + [anon_sym_decimal] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_string] = ACTIONS(683), + [anon_sym_channel] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_bench] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_defer] = ACTIONS(683), + [anon_sym_do] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_interface] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_spawn] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_switch] = ACTIONS(683), + [anon_sym_test] = ACTIONS(683), + [anon_sym_throw] = ACTIONS(683), + [anon_sym_try] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_DOT_DOT] = ACTIONS(681), + [anon_sym_try_BANG] = ACTIONS(681), + [anon_sym_yield] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_move] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(681), + [anon_sym_BQUOTE] = ACTIONS(681), + [sym_char_literal] = ACTIONS(681), + [anon_sym_true] = ACTIONS(683), + [anon_sym_false] = ACTIONS(683), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(683), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym_metavariable] = ACTIONS(681), + [sym_raw_string_literal] = ACTIONS(681), + [sym_float_literal] = ACTIONS(681), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(695), + [sym_identifier] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_int] = ACTIONS(697), + [anon_sym_float] = ACTIONS(697), + [anon_sym_decimal] = ACTIONS(697), + [anon_sym_bool] = ACTIONS(697), + [anon_sym_string] = ACTIONS(697), + [anon_sym_channel] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_SQUOTE] = ACTIONS(697), + [anon_sym_bench] = ACTIONS(697), + [anon_sym_break] = ACTIONS(697), + [anon_sym_const] = ACTIONS(697), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_default] = ACTIONS(697), + [anon_sym_defer] = ACTIONS(697), + [anon_sym_do] = ACTIONS(697), + [anon_sym_enum] = ACTIONS(697), + [anon_sym_fn] = ACTIONS(697), + [anon_sym_for] = ACTIONS(697), + [anon_sym_if] = ACTIONS(697), + [anon_sym_impl] = ACTIONS(697), + [anon_sym_interface] = ACTIONS(697), + [anon_sym_let] = ACTIONS(697), + [anon_sym_loop] = ACTIONS(697), + [anon_sym_pub] = ACTIONS(697), + [anon_sym_return] = ACTIONS(697), + [anon_sym_spawn] = ACTIONS(697), + [anon_sym_struct] = ACTIONS(697), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_test] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_try] = ACTIONS(697), + [anon_sym_type] = ACTIONS(697), + [anon_sym_use] = ACTIONS(697), + [anon_sym_while] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_try_BANG] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_static] = ACTIONS(697), + [anon_sym_move] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(697), + [anon_sym_false] = ACTIONS(697), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(697), + [sym_self] = ACTIONS(697), + [sym_super] = ACTIONS(697), + [sym_crate] = ACTIONS(697), + [sym_metavariable] = ACTIONS(695), + [sym_raw_string_literal] = ACTIONS(695), + [sym_float_literal] = ACTIONS(695), + }, [231] = { + [ts_builtin_sym_end] = ACTIONS(677), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(677), + [anon_sym_int] = ACTIONS(679), + [anon_sym_float] = ACTIONS(679), + [anon_sym_decimal] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_string] = ACTIONS(679), + [anon_sym_channel] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(677), + [anon_sym_POUND] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(677), + [anon_sym_PIPE] = ACTIONS(677), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_bench] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_defer] = ACTIONS(679), + [anon_sym_do] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_interface] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_spawn] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_test] = ACTIONS(679), + [anon_sym_throw] = ACTIONS(679), + [anon_sym_try] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_DOT_DOT] = ACTIONS(677), + [anon_sym_try_BANG] = ACTIONS(677), + [anon_sym_yield] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_move] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(677), + [anon_sym_BQUOTE] = ACTIONS(677), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(679), + [anon_sym_false] = ACTIONS(679), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(679), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym_metavariable] = ACTIONS(677), + [sym_raw_string_literal] = ACTIONS(677), + [sym_float_literal] = ACTIONS(677), + }, + [232] = { [ts_builtin_sym_end] = ACTIONS(929), [sym_identifier] = ACTIONS(931), [anon_sym_SEMI] = ACTIONS(929), @@ -34653,7 +34807,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(929), [sym_float_literal] = ACTIONS(929), }, - [232] = { + [233] = { + [ts_builtin_sym_end] = ACTIONS(685), + [sym_identifier] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_int] = ACTIONS(687), + [anon_sym_float] = ACTIONS(687), + [anon_sym_decimal] = ACTIONS(687), + [anon_sym_bool] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_channel] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_DOT] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_PIPE] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_bench] = ACTIONS(687), + [anon_sym_break] = ACTIONS(687), + [anon_sym_const] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(687), + [anon_sym_default] = ACTIONS(687), + [anon_sym_defer] = ACTIONS(687), + [anon_sym_do] = ACTIONS(687), + [anon_sym_enum] = ACTIONS(687), + [anon_sym_fn] = ACTIONS(687), + [anon_sym_for] = ACTIONS(687), + [anon_sym_if] = ACTIONS(687), + [anon_sym_impl] = ACTIONS(687), + [anon_sym_interface] = ACTIONS(687), + [anon_sym_let] = ACTIONS(687), + [anon_sym_loop] = ACTIONS(687), + [anon_sym_pub] = ACTIONS(687), + [anon_sym_return] = ACTIONS(687), + [anon_sym_spawn] = ACTIONS(687), + [anon_sym_struct] = ACTIONS(687), + [anon_sym_switch] = ACTIONS(687), + [anon_sym_test] = ACTIONS(687), + [anon_sym_throw] = ACTIONS(687), + [anon_sym_try] = ACTIONS(687), + [anon_sym_type] = ACTIONS(687), + [anon_sym_use] = ACTIONS(687), + [anon_sym_while] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(685), + [anon_sym_DOT_DOT] = ACTIONS(685), + [anon_sym_try_BANG] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(687), + [anon_sym_static] = ACTIONS(687), + [anon_sym_move] = ACTIONS(687), + [sym_integer_literal] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_BQUOTE] = ACTIONS(685), + [sym_char_literal] = ACTIONS(685), + [anon_sym_true] = ACTIONS(687), + [anon_sym_false] = ACTIONS(687), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(687), + [sym_self] = ACTIONS(687), + [sym_super] = ACTIONS(687), + [sym_crate] = ACTIONS(687), + [sym_metavariable] = ACTIONS(685), + [sym_raw_string_literal] = ACTIONS(685), + [sym_float_literal] = ACTIONS(685), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(673), + [sym_identifier] = ACTIONS(675), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_int] = ACTIONS(675), + [anon_sym_float] = ACTIONS(675), + [anon_sym_decimal] = ACTIONS(675), + [anon_sym_bool] = ACTIONS(675), + [anon_sym_string] = ACTIONS(675), + [anon_sym_channel] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(675), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_POUND] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_SQUOTE] = ACTIONS(675), + [anon_sym_bench] = ACTIONS(675), + [anon_sym_break] = ACTIONS(675), + [anon_sym_const] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(675), + [anon_sym_default] = ACTIONS(675), + [anon_sym_defer] = ACTIONS(675), + [anon_sym_do] = ACTIONS(675), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_fn] = ACTIONS(675), + [anon_sym_for] = ACTIONS(675), + [anon_sym_if] = ACTIONS(675), + [anon_sym_impl] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(675), + [anon_sym_let] = ACTIONS(675), + [anon_sym_loop] = ACTIONS(675), + [anon_sym_pub] = ACTIONS(675), + [anon_sym_return] = ACTIONS(675), + [anon_sym_spawn] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(675), + [anon_sym_switch] = ACTIONS(675), + [anon_sym_test] = ACTIONS(675), + [anon_sym_throw] = ACTIONS(675), + [anon_sym_try] = ACTIONS(675), + [anon_sym_type] = ACTIONS(675), + [anon_sym_use] = ACTIONS(675), + [anon_sym_while] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_try_BANG] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_static] = ACTIONS(675), + [anon_sym_move] = ACTIONS(675), + [sym_integer_literal] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(673), + [anon_sym_BQUOTE] = ACTIONS(673), + [sym_char_literal] = ACTIONS(673), + [anon_sym_true] = ACTIONS(675), + [anon_sym_false] = ACTIONS(675), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(5), + [anon_sym_union] = ACTIONS(675), + [sym_self] = ACTIONS(675), + [sym_super] = ACTIONS(675), + [sym_crate] = ACTIONS(675), + [sym_metavariable] = ACTIONS(673), + [sym_raw_string_literal] = ACTIONS(673), + [sym_float_literal] = ACTIONS(673), + }, + [235] = { [ts_builtin_sym_end] = ACTIONS(933), [sym_identifier] = ACTIONS(935), [anon_sym_SEMI] = ACTIONS(933), @@ -34722,7 +35014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(933), [sym_float_literal] = ACTIONS(933), }, - [233] = { + [236] = { [ts_builtin_sym_end] = ACTIONS(937), [sym_identifier] = ACTIONS(939), [anon_sym_SEMI] = ACTIONS(937), @@ -34791,7 +35083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(937), [sym_float_literal] = ACTIONS(937), }, - [234] = { + [237] = { [ts_builtin_sym_end] = ACTIONS(941), [sym_identifier] = ACTIONS(943), [anon_sym_SEMI] = ACTIONS(941), @@ -34860,7 +35152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(941), [sym_float_literal] = ACTIONS(941), }, - [235] = { + [238] = { [ts_builtin_sym_end] = ACTIONS(945), [sym_identifier] = ACTIONS(947), [anon_sym_SEMI] = ACTIONS(945), @@ -34929,7 +35221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(945), [sym_float_literal] = ACTIONS(945), }, - [236] = { + [239] = { [ts_builtin_sym_end] = ACTIONS(949), [sym_identifier] = ACTIONS(951), [anon_sym_SEMI] = ACTIONS(949), @@ -34998,7 +35290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(949), [sym_float_literal] = ACTIONS(949), }, - [237] = { + [240] = { [ts_builtin_sym_end] = ACTIONS(953), [sym_identifier] = ACTIONS(955), [anon_sym_SEMI] = ACTIONS(953), @@ -35067,7 +35359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(953), [sym_float_literal] = ACTIONS(953), }, - [238] = { + [241] = { [ts_builtin_sym_end] = ACTIONS(957), [sym_identifier] = ACTIONS(959), [anon_sym_SEMI] = ACTIONS(957), @@ -35136,7 +35428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(957), [sym_float_literal] = ACTIONS(957), }, - [239] = { + [242] = { [ts_builtin_sym_end] = ACTIONS(961), [sym_identifier] = ACTIONS(963), [anon_sym_SEMI] = ACTIONS(961), @@ -35205,7 +35497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(961), [sym_float_literal] = ACTIONS(961), }, - [240] = { + [243] = { [ts_builtin_sym_end] = ACTIONS(965), [sym_identifier] = ACTIONS(967), [anon_sym_SEMI] = ACTIONS(965), @@ -35274,7 +35566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(965), [sym_float_literal] = ACTIONS(965), }, - [241] = { + [244] = { [ts_builtin_sym_end] = ACTIONS(969), [sym_identifier] = ACTIONS(971), [anon_sym_SEMI] = ACTIONS(969), @@ -35343,7 +35635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(969), [sym_float_literal] = ACTIONS(969), }, - [242] = { + [245] = { [ts_builtin_sym_end] = ACTIONS(973), [sym_identifier] = ACTIONS(975), [anon_sym_SEMI] = ACTIONS(973), @@ -35412,7 +35704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(973), [sym_float_literal] = ACTIONS(973), }, - [243] = { + [246] = { [ts_builtin_sym_end] = ACTIONS(977), [sym_identifier] = ACTIONS(979), [anon_sym_SEMI] = ACTIONS(977), @@ -35481,7 +35773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(977), [sym_float_literal] = ACTIONS(977), }, - [244] = { + [247] = { [ts_builtin_sym_end] = ACTIONS(981), [sym_identifier] = ACTIONS(983), [anon_sym_SEMI] = ACTIONS(981), @@ -35550,7 +35842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(981), [sym_float_literal] = ACTIONS(981), }, - [245] = { + [248] = { [ts_builtin_sym_end] = ACTIONS(985), [sym_identifier] = ACTIONS(987), [anon_sym_SEMI] = ACTIONS(985), @@ -35619,7 +35911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(985), [sym_float_literal] = ACTIONS(985), }, - [246] = { + [249] = { [ts_builtin_sym_end] = ACTIONS(989), [sym_identifier] = ACTIONS(991), [anon_sym_SEMI] = ACTIONS(989), @@ -35688,7 +35980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(989), [sym_float_literal] = ACTIONS(989), }, - [247] = { + [250] = { [ts_builtin_sym_end] = ACTIONS(993), [sym_identifier] = ACTIONS(995), [anon_sym_SEMI] = ACTIONS(993), @@ -35757,7 +36049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(993), [sym_float_literal] = ACTIONS(993), }, - [248] = { + [251] = { [ts_builtin_sym_end] = ACTIONS(997), [sym_identifier] = ACTIONS(999), [anon_sym_SEMI] = ACTIONS(997), @@ -35826,7 +36118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(997), [sym_float_literal] = ACTIONS(997), }, - [249] = { + [252] = { [ts_builtin_sym_end] = ACTIONS(1001), [sym_identifier] = ACTIONS(1003), [anon_sym_SEMI] = ACTIONS(1001), @@ -35895,7 +36187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1001), [sym_float_literal] = ACTIONS(1001), }, - [250] = { + [253] = { [ts_builtin_sym_end] = ACTIONS(1005), [sym_identifier] = ACTIONS(1007), [anon_sym_SEMI] = ACTIONS(1005), @@ -35964,7 +36256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1005), [sym_float_literal] = ACTIONS(1005), }, - [251] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(1009), [sym_identifier] = ACTIONS(1011), [anon_sym_SEMI] = ACTIONS(1009), @@ -36033,7 +36325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1009), [sym_float_literal] = ACTIONS(1009), }, - [252] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1013), [sym_identifier] = ACTIONS(1015), [anon_sym_SEMI] = ACTIONS(1013), @@ -36102,7 +36394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1013), [sym_float_literal] = ACTIONS(1013), }, - [253] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1017), [sym_identifier] = ACTIONS(1019), [anon_sym_SEMI] = ACTIONS(1017), @@ -36171,7 +36463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1017), [sym_float_literal] = ACTIONS(1017), }, - [254] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1021), [sym_identifier] = ACTIONS(1023), [anon_sym_SEMI] = ACTIONS(1021), @@ -36240,7 +36532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1021), [sym_float_literal] = ACTIONS(1021), }, - [255] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1025), [sym_identifier] = ACTIONS(1027), [anon_sym_SEMI] = ACTIONS(1025), @@ -36309,7 +36601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1025), [sym_float_literal] = ACTIONS(1025), }, - [256] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1029), [sym_identifier] = ACTIONS(1031), [anon_sym_SEMI] = ACTIONS(1029), @@ -36378,7 +36670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1029), [sym_float_literal] = ACTIONS(1029), }, - [257] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1033), [sym_identifier] = ACTIONS(1035), [anon_sym_SEMI] = ACTIONS(1033), @@ -36447,76 +36739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1033), [sym_float_literal] = ACTIONS(1033), }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(683), - [anon_sym_int] = ACTIONS(685), - [anon_sym_float] = ACTIONS(685), - [anon_sym_decimal] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_string] = ACTIONS(685), - [anon_sym_channel] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_bench] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_defer] = ACTIONS(685), - [anon_sym_do] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_spawn] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(685), - [anon_sym_test] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(685), - [anon_sym_try] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_DOT_DOT] = ACTIONS(683), - [anon_sym_try_BANG] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_move] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [anon_sym_BQUOTE] = ACTIONS(683), - [sym_char_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(685), - [anon_sym_false] = ACTIONS(685), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_union] = ACTIONS(685), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(683), - [sym_raw_string_literal] = ACTIONS(683), - [sym_float_literal] = ACTIONS(683), - }, - [259] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1037), [sym_identifier] = ACTIONS(1039), [anon_sym_SEMI] = ACTIONS(1037), @@ -36585,7 +36808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1037), [sym_float_literal] = ACTIONS(1037), }, - [260] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1041), [sym_identifier] = ACTIONS(1043), [anon_sym_SEMI] = ACTIONS(1041), @@ -36654,7 +36877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1041), [sym_float_literal] = ACTIONS(1041), }, - [261] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1045), [sym_identifier] = ACTIONS(1047), [anon_sym_SEMI] = ACTIONS(1045), @@ -36723,7 +36946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1045), [sym_float_literal] = ACTIONS(1045), }, - [262] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1049), [sym_identifier] = ACTIONS(1051), [anon_sym_SEMI] = ACTIONS(1049), @@ -36792,7 +37015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1049), [sym_float_literal] = ACTIONS(1049), }, - [263] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1053), [sym_identifier] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(1053), @@ -36861,7 +37084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1053), [sym_float_literal] = ACTIONS(1053), }, - [264] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1057), [sym_identifier] = ACTIONS(1059), [anon_sym_SEMI] = ACTIONS(1057), @@ -36930,7 +37153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1057), [sym_float_literal] = ACTIONS(1057), }, - [265] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1061), [sym_identifier] = ACTIONS(1063), [anon_sym_SEMI] = ACTIONS(1061), @@ -36999,7 +37222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1061), [sym_float_literal] = ACTIONS(1061), }, - [266] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1065), [sym_identifier] = ACTIONS(1067), [anon_sym_SEMI] = ACTIONS(1065), @@ -37068,7 +37291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1065), [sym_float_literal] = ACTIONS(1065), }, - [267] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1069), [sym_identifier] = ACTIONS(1071), [anon_sym_SEMI] = ACTIONS(1069), @@ -37137,7 +37360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1069), [sym_float_literal] = ACTIONS(1069), }, - [268] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1073), [sym_identifier] = ACTIONS(1075), [anon_sym_SEMI] = ACTIONS(1073), @@ -37206,7 +37429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1073), [sym_float_literal] = ACTIONS(1073), }, - [269] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1077), [sym_identifier] = ACTIONS(1079), [anon_sym_SEMI] = ACTIONS(1077), @@ -37275,7 +37498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1077), [sym_float_literal] = ACTIONS(1077), }, - [270] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1081), [sym_identifier] = ACTIONS(1083), [anon_sym_SEMI] = ACTIONS(1081), @@ -37344,7 +37567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1081), [sym_float_literal] = ACTIONS(1081), }, - [271] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1085), [sym_identifier] = ACTIONS(1087), [anon_sym_SEMI] = ACTIONS(1085), @@ -37413,7 +37636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1085), [sym_float_literal] = ACTIONS(1085), }, - [272] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1089), [sym_identifier] = ACTIONS(1091), [anon_sym_SEMI] = ACTIONS(1089), @@ -37482,7 +37705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1089), [sym_float_literal] = ACTIONS(1089), }, - [273] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1093), [sym_identifier] = ACTIONS(1095), [anon_sym_SEMI] = ACTIONS(1093), @@ -37551,7 +37774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1093), [sym_float_literal] = ACTIONS(1093), }, - [274] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1097), [sym_identifier] = ACTIONS(1099), [anon_sym_SEMI] = ACTIONS(1097), @@ -37620,7 +37843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1097), [sym_float_literal] = ACTIONS(1097), }, - [275] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1101), [sym_identifier] = ACTIONS(1103), [anon_sym_SEMI] = ACTIONS(1101), @@ -37689,7 +37912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1101), [sym_float_literal] = ACTIONS(1101), }, - [276] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1105), [sym_identifier] = ACTIONS(1107), [anon_sym_SEMI] = ACTIONS(1105), @@ -37758,7 +37981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1105), [sym_float_literal] = ACTIONS(1105), }, - [277] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1109), [sym_identifier] = ACTIONS(1111), [anon_sym_SEMI] = ACTIONS(1109), @@ -37827,7 +38050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1109), [sym_float_literal] = ACTIONS(1109), }, - [278] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1113), [sym_identifier] = ACTIONS(1115), [anon_sym_SEMI] = ACTIONS(1113), @@ -37896,7 +38119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1113), [sym_float_literal] = ACTIONS(1113), }, - [279] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1117), [sym_identifier] = ACTIONS(1119), [anon_sym_SEMI] = ACTIONS(1117), @@ -37965,7 +38188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1117), [sym_float_literal] = ACTIONS(1117), }, - [280] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1121), [sym_identifier] = ACTIONS(1123), [anon_sym_SEMI] = ACTIONS(1121), @@ -38034,7 +38257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1121), [sym_float_literal] = ACTIONS(1121), }, - [281] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1125), [sym_identifier] = ACTIONS(1127), [anon_sym_SEMI] = ACTIONS(1125), @@ -38103,7 +38326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1125), [sym_float_literal] = ACTIONS(1125), }, - [282] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1129), [sym_identifier] = ACTIONS(1131), [anon_sym_SEMI] = ACTIONS(1129), @@ -38172,7 +38395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1129), [sym_float_literal] = ACTIONS(1129), }, - [283] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1133), [sym_identifier] = ACTIONS(1135), [anon_sym_SEMI] = ACTIONS(1133), @@ -38241,7 +38464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1133), [sym_float_literal] = ACTIONS(1133), }, - [284] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1137), [sym_identifier] = ACTIONS(1139), [anon_sym_SEMI] = ACTIONS(1137), @@ -38310,7 +38533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1137), [sym_float_literal] = ACTIONS(1137), }, - [285] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1141), [sym_identifier] = ACTIONS(1143), [anon_sym_SEMI] = ACTIONS(1141), @@ -38379,7 +38602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1141), [sym_float_literal] = ACTIONS(1141), }, - [286] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1145), [sym_identifier] = ACTIONS(1147), [anon_sym_SEMI] = ACTIONS(1145), @@ -38448,7 +38671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1145), [sym_float_literal] = ACTIONS(1145), }, - [287] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1149), [sym_identifier] = ACTIONS(1151), [anon_sym_SEMI] = ACTIONS(1149), @@ -38517,7 +38740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1149), [sym_float_literal] = ACTIONS(1149), }, - [288] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1153), [sym_identifier] = ACTIONS(1155), [anon_sym_SEMI] = ACTIONS(1153), @@ -38586,7 +38809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1153), [sym_float_literal] = ACTIONS(1153), }, - [289] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1159), [anon_sym_SEMI] = ACTIONS(1157), @@ -38655,7 +38878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1157), [sym_float_literal] = ACTIONS(1157), }, - [290] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1161), [sym_identifier] = ACTIONS(1163), [anon_sym_SEMI] = ACTIONS(1161), @@ -38724,7 +38947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1161), [sym_float_literal] = ACTIONS(1161), }, - [291] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1165), [sym_identifier] = ACTIONS(1167), [anon_sym_SEMI] = ACTIONS(1165), @@ -38793,7 +39016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1165), [sym_float_literal] = ACTIONS(1165), }, - [292] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1169), [sym_identifier] = ACTIONS(1171), [anon_sym_SEMI] = ACTIONS(1169), @@ -38862,7 +39085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1169), [sym_float_literal] = ACTIONS(1169), }, - [293] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1173), [sym_identifier] = ACTIONS(1175), [anon_sym_SEMI] = ACTIONS(1173), @@ -38939,7 +39162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(689), 14, + ACTIONS(683), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -38954,7 +39177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(687), 48, + ACTIONS(681), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39008,7 +39231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(685), 14, + ACTIONS(675), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -39023,7 +39246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(683), 48, + ACTIONS(673), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39077,7 +39300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(675), 14, + ACTIONS(679), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -39092,7 +39315,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(673), 48, + ACTIONS(677), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_bench, + anon_sym_case, + anon_sym_catch, + anon_sym_const, + anon_sym_default, + anon_sym_else, + anon_sym_enum, + anon_sym_finally, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + sym_crate, + [219] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(697), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(695), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39141,12 +39433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [219] = 4, + [292] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(693), 14, + ACTIONS(687), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -39161,7 +39453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(691), 48, + ACTIONS(685), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39210,12 +39502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [292] = 4, + [365] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(697), 14, + ACTIONS(1177), 1, + anon_sym_else, + STATE(309), 1, + sym_else_clause, + ACTIONS(691), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -39230,7 +39526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(695), 48, + ACTIONS(689), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39239,12 +39535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_bench, anon_sym_case, - anon_sym_catch, anon_sym_const, anon_sym_default, - anon_sym_else, anon_sym_enum, - anon_sym_finally, anon_sym_fn, anon_sym_impl, anon_sym_interface, @@ -39279,7 +39572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [365] = 38, + [441] = 38, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -39292,84 +39585,84 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, - anon_sym_DASH, + anon_sym__, ACTIONS(1185), 1, - anon_sym_COMMA, + anon_sym_DASH, ACTIONS(1187), 1, - anon_sym_DOT, + anon_sym_COMMA, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(1199), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(1201), 1, - anon_sym_DOT_DOT, + anon_sym_RPAREN, ACTIONS(1203), 1, - anon_sym_static, + anon_sym_DOT_DOT, ACTIONS(1205), 1, + anon_sym_static, + ACTIONS(1207), 1, anon_sym_move, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(67), 1, + STATE(59), 1, sym_closure_parameters, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1021), 1, + STATE(1046), 1, sym__pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1205), 1, sym_closure_expression, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -39381,82 +39674,112 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [505] = 6, + [581] = 37, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1219), 1, - anon_sym_else, - STATE(326), 1, - sym_else_clause, - ACTIONS(679), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, + ACTIONS(23), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(677), 45, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(835), 1, + anon_sym_AMP, + ACTIONS(837), 1, + sym_mutable_specifier, + ACTIONS(839), 1, + anon_sym_ref, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, + anon_sym_DASH, + ACTIONS(1189), 1, anon_sym_DOT, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_bench, - anon_sym_case, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, + ACTIONS(1197), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1199), 1, anon_sym_LPAREN, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(1205), 1, + anon_sym_static, + ACTIONS(1207), 1, + anon_sym_move, + ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, + anon_sym_BQUOTE, + ACTIONS(1219), 1, + sym_metavariable, + ACTIONS(1221), 1, anon_sym_RPAREN, - 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, + STATE(59), 1, + sym_closure_parameters, + STATE(838), 1, + sym_scoped_identifier, + STATE(867), 1, + sym__literal_pattern, + STATE(1170), 1, + sym__pattern, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1314), 1, + sym_closure_expression, + STATE(1407), 1, + sym_bracketed_type, + STATE(1409), 1, + sym_generic_type_with_turbofish, + STATE(1435), 1, + sym_generic_type, + ACTIONS(1195), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1215), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1217), 3, + sym_self, + sym_super, sym_crate, - [581] = 5, + ACTIONS(1209), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(868), 4, + sym_negative_literal, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(1181), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + STATE(897), 11, + sym_const_block, + sym_tuple_pattern, + sym_slice_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, + [718] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1221), 1, + ACTIONS(1223), 1, anon_sym_finally, ACTIONS(701), 14, anon_sym_SLASH, @@ -39519,95 +39842,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [654] = 37, + [791] = 37, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(23), 1, + anon_sym_PIPE, ACTIONS(835), 1, anon_sym_AMP, ACTIONS(837), 1, sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, + ACTIONS(1205), 1, + anon_sym_static, + ACTIONS(1207), 1, + anon_sym_move, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1223), 1, - anon_sym__, ACTIONS(1225), 1, - anon_sym_COMMA, - ACTIONS(1227), 1, - anon_sym_POUND, - ACTIONS(1229), 1, anon_sym_RPAREN, - ACTIONS(1231), 1, - sym_self, - STATE(332), 1, - sym_attribute_item, - STATE(842), 1, + STATE(59), 1, + sym_closure_parameters, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1170), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1314), 1, + sym_closure_expression, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 3, + sym_self, sym_super, sym_crate, - STATE(1175), 2, - sym_self_parameter, - sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -39619,95 +39942,95 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [791] = 37, + [928] = 37, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, ACTIONS(835), 1, anon_sym_AMP, ACTIONS(837), 1, sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, ACTIONS(1203), 1, - anon_sym_static, - ACTIONS(1205), 1, - anon_sym_move, - ACTIONS(1209), 1, - anon_sym_DQUOTE, + anon_sym_DOT_DOT, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, + ACTIONS(1227), 1, + anon_sym__, + ACTIONS(1229), 1, + anon_sym_COMMA, + ACTIONS(1231), 1, + anon_sym_POUND, ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(67), 1, - sym_closure_parameters, - STATE(842), 1, + ACTIONS(1235), 1, + sym_self, + STATE(334), 1, + sym_attribute_item, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1192), 1, + STATE(1340), 1, sym__pattern, - STATE(1346), 1, - sym_closure_expression, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, - sym_self, + ACTIONS(1217), 2, sym_super, sym_crate, - ACTIONS(1207), 4, + STATE(1253), 2, + sym_self_parameter, + sym_parameter, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -39719,7 +40042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [928] = 37, + [1065] = 37, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -39730,184 +40053,84 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, - sym_self, + anon_sym_POUND, ACTIONS(1235), 1, - anon_sym__, + sym_self, ACTIONS(1237), 1, - anon_sym_COMMA, + anon_sym__, ACTIONS(1239), 1, + anon_sym_COMMA, + ACTIONS(1241), 1, anon_sym_RPAREN, - STATE(329), 1, + STATE(335), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1254), 2, + STATE(1261), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, - sym_const_block, - sym_tuple_pattern, - sym_slice_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, - [1065] = 37, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - ACTIONS(835), 1, - anon_sym_AMP, - ACTIONS(837), 1, - sym_mutable_specifier, - ACTIONS(839), 1, - anon_sym_ref, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1181), 1, - anon_sym__, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, - ACTIONS(1189), 1, - anon_sym_LT, - ACTIONS(1191), 1, - anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LPAREN, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(1203), 1, - anon_sym_static, - ACTIONS(1205), 1, - anon_sym_move, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - anon_sym_BQUOTE, - ACTIONS(1217), 1, - sym_metavariable, - ACTIONS(1241), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym_closure_parameters, - STATE(842), 1, - sym_scoped_identifier, - STATE(865), 1, - sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1192), 1, - sym__pattern, - STATE(1346), 1, - sym_closure_expression, - STATE(1353), 1, - sym_bracketed_type, - STATE(1405), 1, - sym_generic_type_with_turbofish, - STATE(1434), 1, - sym_generic_type, - ACTIONS(1193), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1215), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(1207), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(864), 4, - sym_negative_literal, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(1179), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -39924,7 +40147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(715), 14, + ACTIONS(735), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -39939,7 +40162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(713), 45, + ACTIONS(733), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -39990,7 +40213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(739), 14, + ACTIONS(785), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40005,7 +40228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(737), 45, + ACTIONS(783), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -40056,7 +40279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(777), 14, + ACTIONS(773), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40071,7 +40294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(775), 45, + ACTIONS(771), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -40128,31 +40351,31 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, @@ -40160,50 +40383,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -40215,73 +40438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [1546] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(723), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(721), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_bench, - anon_sym_case, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - sym_crate, - [1616] = 36, + [1546] = 36, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -40294,80 +40451,80 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, ACTIONS(1203), 1, - anon_sym_static, + anon_sym_DOT_DOT, ACTIONS(1205), 1, + anon_sym_static, + ACTIONS(1207), 1, anon_sym_move, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(67), 1, + STATE(59), 1, sym_closure_parameters, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1192), 1, + STATE(1170), 1, sym__pattern, - STATE(1346), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1314), 1, sym_closure_expression, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -40379,12 +40536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [1750] = 4, + [1680] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(731), 14, + ACTIONS(727), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40399,7 +40556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(729), 45, + ACTIONS(725), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -40445,7 +40602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [1820] = 36, + [1750] = 36, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -40456,31 +40613,31 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, @@ -40488,50 +40645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -40543,12 +40700,12 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [1954] = 4, + [1884] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(735), 14, + ACTIONS(761), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40563,7 +40720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(733), 45, + ACTIONS(759), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -40609,110 +40766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2024] = 36, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(835), 1, - anon_sym_AMP, - ACTIONS(837), 1, - sym_mutable_specifier, - ACTIONS(839), 1, - anon_sym_ref, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, - ACTIONS(1189), 1, - anon_sym_LT, - ACTIONS(1191), 1, - anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LPAREN, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - anon_sym_BQUOTE, - ACTIONS(1217), 1, - sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, - ACTIONS(1231), 1, - sym_self, - ACTIONS(1243), 1, - anon_sym__, - ACTIONS(1249), 1, - anon_sym_RPAREN, - STATE(331), 1, - sym_attribute_item, - STATE(842), 1, - sym_scoped_identifier, - STATE(865), 1, - sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1259), 1, - sym__pattern, - STATE(1353), 1, - sym_bracketed_type, - STATE(1405), 1, - sym_generic_type_with_turbofish, - STATE(1434), 1, - sym_generic_type, - ACTIONS(1193), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1215), 2, - sym_super, - sym_crate, - STATE(1279), 2, - sym_self_parameter, - sym_parameter, - ACTIONS(1207), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(864), 4, - sym_negative_literal, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(1179), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - STATE(918), 11, - sym_const_block, - sym_tuple_pattern, - sym_slice_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, - [2158] = 4, + [1954] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(719), 14, + ACTIONS(765), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40727,7 +40786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(717), 45, + ACTIONS(763), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -40773,7 +40832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2228] = 4, + [2024] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -40839,7 +40898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2298] = 36, + [2094] = 36, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -40850,31 +40909,129 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, + ACTIONS(1231), 1, anon_sym_POUND, + ACTIONS(1235), 1, + sym_self, + ACTIONS(1243), 1, + anon_sym__, + ACTIONS(1249), 1, + anon_sym_RPAREN, + STATE(331), 1, + sym_attribute_item, + STATE(838), 1, + sym_scoped_identifier, + STATE(867), 1, + sym__literal_pattern, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1340), 1, + sym__pattern, + STATE(1407), 1, + sym_bracketed_type, + STATE(1409), 1, + sym_generic_type_with_turbofish, + STATE(1435), 1, + sym_generic_type, + ACTIONS(1195), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1215), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1217), 2, + sym_super, + sym_crate, + STATE(1337), 2, + sym_self_parameter, + sym_parameter, + ACTIONS(1209), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(868), 4, + sym_negative_literal, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(1181), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + STATE(897), 11, + sym_const_block, + sym_tuple_pattern, + sym_slice_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, + [2228] = 36, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(835), 1, + anon_sym_AMP, + ACTIONS(837), 1, + sym_mutable_specifier, + ACTIONS(839), 1, + anon_sym_ref, + ACTIONS(1179), 1, + sym_identifier, + ACTIONS(1185), 1, + anon_sym_DASH, + ACTIONS(1189), 1, + anon_sym_DOT, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, + anon_sym_const, + ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, + anon_sym_LPAREN, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, + anon_sym_BQUOTE, + ACTIONS(1219), 1, + sym_metavariable, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, @@ -40882,50 +41039,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -40937,12 +41094,12 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [2432] = 4, + [2362] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(773), 14, + ACTIONS(789), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -40957,7 +41114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(771), 45, + ACTIONS(787), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41003,7 +41160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2502] = 36, + [2432] = 36, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -41014,31 +41171,31 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, @@ -41046,50 +41203,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41101,78 +41258,12 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [2636] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(707), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(705), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_bench, - anon_sym_case, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - sym_crate, - [2706] = 4, + [2566] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(759), 14, + ACTIONS(769), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -41187,7 +41278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(757), 45, + ACTIONS(767), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41233,12 +41324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2776] = 4, + [2636] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(781), 14, + ACTIONS(757), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -41253,7 +41344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(779), 45, + ACTIONS(755), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41299,12 +41390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2846] = 4, + [2706] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(747), 14, + ACTIONS(777), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -41319,7 +41410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(745), 45, + ACTIONS(775), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41365,7 +41456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, sym_crate, - [2916] = 36, + [2776] = 36, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -41376,31 +41467,31 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, @@ -41408,50 +41499,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41463,12 +41554,144 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, + [2910] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(731), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(729), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_bench, + anon_sym_case, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + sym_crate, + [2980] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(723), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(721), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_bench, + anon_sym_case, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + sym_crate, [3050] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(727), 14, + ACTIONS(781), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -41483,7 +41706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(725), 45, + ACTIONS(779), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41534,7 +41757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(743), 14, + ACTIONS(707), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -41549,7 +41772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(741), 45, + ACTIONS(705), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -41606,80 +41829,80 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1227), 1, - anon_sym_POUND, ACTIONS(1231), 1, + anon_sym_POUND, + ACTIONS(1235), 1, sym_self, ACTIONS(1243), 1, anon_sym__, STATE(331), 1, sym_attribute_item, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1279), 2, + STATE(1337), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41702,76 +41925,76 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1231), 1, + ACTIONS(1235), 1, sym_self, ACTIONS(1257), 1, anon_sym__, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1228), 2, + STATE(1327), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41794,76 +42017,76 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, ACTIONS(1259), 1, - anon_sym_PIPE, - STATE(842), 1, + anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_RBRACK, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1106), 1, + STATE(1050), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1136), 1, - sym_parameter, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41886,76 +42109,76 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1231), 1, - sym_self, - ACTIONS(1261), 1, - anon_sym__, - STATE(842), 1, + ACTIONS(1263), 1, + anon_sym_PIPE, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1033), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1234), 1, + sym_parameter, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 3, + sym_self, sym_super, sym_crate, - STATE(1291), 2, - sym_self_parameter, - sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -41978,76 +42201,76 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1231), 1, + ACTIONS(1235), 1, sym_self, - ACTIONS(1263), 1, + ACTIONS(1265), 1, anon_sym__, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1259), 1, + STATE(1340), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 2, + ACTIONS(1217), 2, sym_super, sym_crate, - STATE(1186), 2, + STATE(1198), 2, sym_self_parameter, sym_parameter, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42070,76 +42293,76 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1265), 1, - anon_sym_COMMA, + ACTIONS(1235), 1, + sym_self, ACTIONS(1267), 1, - anon_sym_RBRACK, - STATE(842), 1, + anon_sym__, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1094), 1, - sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1340), 1, + sym__pattern, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, - sym_self, + ACTIONS(1217), 2, sym_super, sym_crate, - ACTIONS(1207), 4, + STATE(1222), 2, + sym_self_parameter, + sym_parameter, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42162,74 +42385,74 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1122), 1, + STATE(1145), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1273), 1, + STATE(1264), 1, sym_parameter, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42252,74 +42475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, ACTIONS(1269), 1, anon_sym_RBRACK, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, STATE(1187), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42342,74 +42565,74 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, ACTIONS(1271), 1, anon_sym_RBRACK, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, STATE(1187), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42432,72 +42655,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(919), 1, + STATE(896), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42520,72 +42743,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1187), 1, + STATE(893), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42604,76 +42827,76 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(835), 1, anon_sym_AMP, + ACTIONS(837), 1, + sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - ACTIONS(1273), 1, - sym_mutable_specifier, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(899), 1, - sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1303), 1, + sym__pattern, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42696,72 +42919,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(901), 1, + STATE(912), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42780,76 +43003,76 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(835), 1, anon_sym_AMP, - ACTIONS(837), 1, - sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + ACTIONS(1273), 1, + sym_mutable_specifier, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1247), 1, + STATE(903), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42872,72 +43095,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1135), 1, + STATE(1187), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -42960,72 +43183,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, - sym_scoped_type_identifier, - STATE(1302), 1, + STATE(1037), 1, sym__pattern, - STATE(1353), 1, + STATE(1232), 1, + sym_scoped_type_identifier, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43048,72 +43271,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(925), 1, - sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1305), 1, + sym__pattern, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43136,72 +43359,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(912), 1, + STATE(924), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43224,72 +43447,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(917), 1, + STATE(1171), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43312,72 +43535,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1115), 1, + STATE(1096), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43400,72 +43623,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1310), 1, + STATE(1269), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43488,72 +43711,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1089), 1, + STATE(1166), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43576,72 +43799,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1072), 1, + STATE(895), 1, sym__pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43664,72 +43887,72 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, ACTIONS(839), 1, anon_sym_ref, - ACTIONS(1177), 1, + ACTIONS(1179), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym__, ACTIONS(1183), 1, + anon_sym__, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1187), 1, - anon_sym_DOT, ACTIONS(1189), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(1193), 1, anon_sym_const, - ACTIONS(1195), 1, - anon_sym_LBRACK, ACTIONS(1197), 1, + anon_sym_LBRACK, + ACTIONS(1199), 1, anon_sym_LPAREN, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(1217), 1, + ACTIONS(1219), 1, sym_metavariable, - STATE(842), 1, + STATE(838), 1, sym_scoped_identifier, - STATE(865), 1, + STATE(867), 1, sym__literal_pattern, - STATE(1133), 1, + STATE(1232), 1, sym_scoped_type_identifier, - STATE(1280), 1, + STATE(1258), 1, sym__pattern, - STATE(1353), 1, + STATE(1407), 1, sym_bracketed_type, - STATE(1405), 1, + STATE(1409), 1, sym_generic_type_with_turbofish, - STATE(1434), 1, + STATE(1435), 1, sym_generic_type, - ACTIONS(1193), 2, + ACTIONS(1195), 2, anon_sym_default, anon_sym_union, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(1215), 3, + ACTIONS(1217), 3, sym_self, sym_super, sym_crate, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(1179), 6, + ACTIONS(1181), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - STATE(918), 11, + STATE(897), 11, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -43741,74 +43964,14 @@ static const uint16_t ts_small_parse_table[] = { sym_captured_pattern, sym_reference_pattern, sym_or_pattern, - [6097] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(787), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(783), 18, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_bench, - anon_sym_const, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, - anon_sym_RBRACE, - sym_crate, - ACTIONS(789), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_LPAREN, - 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, - [6162] = 6, + [6097] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1279), 1, anon_sym_POUND, - STATE(353), 2, + STATE(354), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, ACTIONS(1277), 17, @@ -43862,12 +44025,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, + [6164] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(751), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(747), 18, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_bench, + anon_sym_const, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_RBRACE, + sym_crate, + ACTIONS(753), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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, [6229] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1284), 17, + ACTIONS(833), 17, sym_raw_string_literal, sym_float_literal, anon_sym_DASH_GT, @@ -43885,7 +44108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_char_literal, sym_metavariable, - ACTIONS(1282), 34, + ACTIONS(831), 34, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -43925,7 +44148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(833), 17, + ACTIONS(1284), 17, sym_raw_string_literal, sym_float_literal, anon_sym_DASH_GT, @@ -43943,7 +44166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_char_literal, sym_metavariable, - ACTIONS(831), 34, + ACTIONS(1282), 34, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -44041,7 +44264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(572), 18, + ACTIONS(528), 18, sym_raw_string_literal, sym_float_literal, anon_sym_DASH, @@ -44098,7 +44321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1101), 18, + ACTIONS(1049), 18, sym_raw_string_literal, sym_float_literal, anon_sym_DASH, @@ -44117,7 +44340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_char_literal, sym_metavariable, - ACTIONS(1103), 32, + ACTIONS(1051), 32, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -44161,9 +44384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, ACTIONS(1292), 1, sym_identifier, @@ -44179,21 +44402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1312), 1, sym_metavariable, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1476), 1, + STATE(1460), 1, + sym_bracketed_type, + STATE(1480), 1, sym_label, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, ACTIONS(1304), 2, @@ -44203,7 +44426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1307), 3, + STATE(1299), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -44212,12 +44435,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - STATE(1260), 5, + STATE(1332), 5, sym__option_type, sym_lifetime, sym_type_binding, @@ -44241,9 +44464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, ACTIONS(1292), 1, sym_identifier, @@ -44259,21 +44482,21 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(1314), 1, anon_sym_GT, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1476), 1, + STATE(1460), 1, + sym_bracketed_type, + STATE(1480), 1, sym_label, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, ACTIONS(1304), 2, @@ -44283,7 +44506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1307), 3, + STATE(1299), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -44292,12 +44515,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - STATE(1260), 5, + STATE(1332), 5, sym__option_type, sym_lifetime, sym_type_binding, @@ -44321,89 +44544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, - anon_sym_BQUOTE, - ACTIONS(1292), 1, - sym_identifier, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1302), 1, - anon_sym_SQUOTE, - ACTIONS(1306), 1, - anon_sym_LBRACE, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1316), 1, - anon_sym_GT, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - STATE(1476), 1, - sym_label, - ACTIONS(1213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 3, - sym_self, - sym_super, - sym_crate, - STATE(1307), 3, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(1308), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - STATE(1260), 5, - sym__option_type, - sym_lifetime, - sym_type_binding, - sym_block, - sym__literal, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [6864] = 29, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1209), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1213), 1, anon_sym_BQUOTE, ACTIONS(1292), 1, sym_identifier, @@ -44417,101 +44560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1318), 1, + ACTIONS(1316), 1, anon_sym_GT, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1476), 1, - sym_label, - ACTIONS(1213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 3, - sym_self, - sym_super, - sym_crate, - STATE(1307), 3, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(1308), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - STATE(1260), 5, - sym__option_type, - sym_lifetime, - sym_type_binding, - sym_block, - sym__literal, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [6973] = 28, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - anon_sym_BQUOTE, - ACTIONS(1292), 1, - sym_identifier, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1302), 1, - anon_sym_SQUOTE, - ACTIONS(1306), 1, - anon_sym_LBRACE, - ACTIONS(1312), 1, - sym_metavariable, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, + STATE(1460), 1, sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - STATE(1476), 1, + STATE(1480), 1, sym_label, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, ACTIONS(1304), 2, @@ -44521,7 +44586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1307), 3, + STATE(1299), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -44530,12 +44595,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - STATE(1134), 5, + STATE(1332), 5, sym__option_type, sym_lifetime, sym_type_binding, @@ -44548,7 +44613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [7079] = 28, + [6864] = 29, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -44559,9 +44624,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(1209), 1, + ACTIONS(1211), 1, anon_sym_DQUOTE, + ACTIONS(1213), 1, + anon_sym_BQUOTE, + ACTIONS(1292), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + anon_sym_SQUOTE, + ACTIONS(1306), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1318), 1, + anon_sym_GT, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + STATE(1480), 1, + sym_label, + ACTIONS(1215), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 3, + sym_self, + sym_super, + sym_crate, + STATE(1299), 3, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(1308), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + STATE(1332), 5, + sym__option_type, + sym_lifetime, + sym_type_binding, + sym_block, + sym__literal, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [6973] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, ACTIONS(1292), 1, sym_identifier, @@ -44575,21 +44720,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1312), 1, sym_metavariable, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, sym_bracketed_type, - STATE(1383), 1, + STATE(1480), 1, + sym_label, + ACTIONS(1215), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 3, + sym_self, + sym_super, + sym_crate, + STATE(1299), 3, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(1308), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + STATE(1259), 5, + sym__option_type, + sym_lifetime, + sym_type_binding, + sym_block, + sym__literal, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [7079] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, + anon_sym_BQUOTE, + ACTIONS(1292), 1, + sym_identifier, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + anon_sym_SQUOTE, + ACTIONS(1306), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + sym_metavariable, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1476), 1, + STATE(1460), 1, + sym_bracketed_type, + STATE(1480), 1, sym_label, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, ACTIONS(1304), 2, @@ -44599,7 +44822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1307), 3, + STATE(1299), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -44608,12 +44831,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - STATE(1260), 5, + STATE(1133), 5, sym__option_type, sym_lifetime, sym_type_binding, @@ -44637,9 +44860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, ACTIONS(1292), 1, sym_identifier, @@ -44653,21 +44876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1312), 1, sym_metavariable, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1476), 1, + STATE(1460), 1, + sym_bracketed_type, + STATE(1480), 1, sym_label, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, ACTIONS(1304), 2, @@ -44677,7 +44900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1307), 3, + STATE(1299), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -44686,12 +44909,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - STATE(1252), 5, + STATE(1332), 5, sym__option_type, sym_lifetime, sym_type_binding, @@ -44717,9 +44940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1331), 1, anon_sym_LT2, - STATE(378), 1, + STATE(379), 1, sym_parameters, - STATE(393), 1, + STATE(401), 1, sym_type_arguments, ACTIONS(1322), 16, anon_sym_SLASH, @@ -44772,9 +44995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1331), 1, anon_sym_LT2, - STATE(372), 1, + STATE(380), 1, sym_parameters, - STATE(401), 1, + STATE(404), 1, sym_type_arguments, ACTIONS(1335), 16, anon_sym_SLASH, @@ -45031,14 +45254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [7660] = 5, + [7660] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(1320), 1, + anon_sym_QMARK, + ACTIONS(1373), 1, + anon_sym_COLON_COLON, + ACTIONS(1375), 1, + anon_sym_LBRACE, ACTIONS(1377), 1, - anon_sym_DASH_GT, - ACTIONS(1375), 14, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(1382), 1, + anon_sym_LT2, + STATE(443), 1, + sym_field_initializer_list, + STATE(836), 1, + sym_type_arguments, + STATE(840), 1, + sym_parameters, + ACTIONS(751), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45051,26 +45290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1373), 28, - anon_sym_SEMI, + anon_sym_LT_LT_EQ, + ACTIONS(753), 18, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_DOT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, 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, @@ -45080,14 +45312,13 @@ static const 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, - [7716] = 4, + [7732] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1381), 14, + ACTIONS(1357), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45100,11 +45331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1379), 29, + anon_sym_LT_LT_EQ, + ACTIONS(1355), 27, anon_sym_SEMI, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45116,11 +45348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LT2, 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, @@ -45130,14 +45362,13 @@ static const 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, - [7770] = 4, + [7786] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1385), 14, + ACTIONS(1386), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45152,7 +45383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1383), 29, + ACTIONS(1384), 29, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_COMMA, @@ -45182,12 +45413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7824] = 4, + [7840] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1389), 14, + ACTIONS(1392), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45202,9 +45435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1387), 29, + ACTIONS(1388), 28, anon_sym_SEMI, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45232,14 +45464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7878] = 5, + [7896] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1395), 1, - anon_sym_DASH_GT, - ACTIONS(1393), 14, + ACTIONS(1396), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45254,8 +45484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1391), 28, + ACTIONS(1394), 29, anon_sym_SEMI, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45283,12 +45514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7934] = 4, + [7950] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1399), 14, + ACTIONS(1402), 1, + anon_sym_DASH_GT, + ACTIONS(1400), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45303,9 +45536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1397), 29, + ACTIONS(1398), 28, anon_sym_SEMI, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45333,14 +45565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7988] = 5, + [8006] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1405), 1, + ACTIONS(1408), 1, anon_sym_DASH_GT, - ACTIONS(1403), 14, + ACTIONS(1406), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45355,7 +45587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1401), 28, + ACTIONS(1404), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, @@ -45384,12 +45616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8044] = 4, + [8062] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1409), 14, + ACTIONS(1412), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45404,7 +45636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1407), 29, + ACTIONS(1410), 29, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_COMMA, @@ -45434,12 +45666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8098] = 4, + [8116] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1339), 16, + ACTIONS(1416), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45452,12 +45684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(1337), 27, + ACTIONS(1414), 29, anon_sym_SEMI, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45469,70 +45700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT2, 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, - [8152] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1320), 1, - anon_sym_QMARK, - ACTIONS(1411), 1, - anon_sym_COLON_COLON, - ACTIONS(1413), 1, - anon_sym_LBRACE, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(1417), 1, - anon_sym_RPAREN, - ACTIONS(1420), 1, - anon_sym_LT2, - STATE(433), 1, - sym_field_initializer_list, - STATE(833), 1, - sym_parameters, - STATE(834), 1, - sym_type_arguments, - ACTIONS(787), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(789), 18, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACK, - 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, @@ -45542,13 +45714,14 @@ static const 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, - [8224] = 4, + [8170] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1424), 14, + ACTIONS(1420), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45563,8 +45736,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1422), 28, + ACTIONS(1418), 29, anon_sym_SEMI, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_DOT, @@ -45592,12 +45766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8277] = 4, + [8224] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(791), 14, + ACTIONS(1424), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45612,10 +45786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(793), 28, + ACTIONS(1422), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45641,7 +45815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8330] = 4, + [8277] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -45664,7 +45838,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1426), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45690,7 +45864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8383] = 4, + [8330] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -45710,7 +45884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1359), 28, + ACTIONS(1368), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -45739,12 +45913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8436] = 4, + [8383] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1432), 14, + ACTIONS(827), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45759,10 +45933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1368), 28, + ACTIONS(829), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45788,12 +45962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8489] = 4, + [8436] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1436), 14, + ACTIONS(795), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45808,10 +45982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1434), 28, + ACTIONS(797), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45837,7 +46011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8542] = 4, + [8489] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -45886,12 +46060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8595] = 4, + [8542] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1440), 14, + ACTIONS(1434), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45906,10 +46080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1438), 28, + ACTIONS(1432), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45935,12 +46109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8648] = 4, + [8595] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1444), 14, + ACTIONS(1438), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -45955,10 +46129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1442), 28, + ACTIONS(1436), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -45984,12 +46158,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8701] = 4, + [8648] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1448), 14, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(465), 1, + sym_label, + ACTIONS(1442), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46004,12 +46182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1446), 28, + ACTIONS(1440), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_DOT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -46033,12 +46209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8754] = 4, + [8705] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1452), 14, + ACTIONS(1450), 1, + anon_sym_DOT, + ACTIONS(1448), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46053,11 +46231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 28, + ACTIONS(1446), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -46082,12 +46259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8807] = 4, + [8760] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1456), 14, + ACTIONS(1453), 1, + anon_sym_DOT, + ACTIONS(1335), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46102,11 +46281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1454), 28, + ACTIONS(1333), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -46131,12 +46309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8860] = 4, + [8815] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1460), 14, + ACTIONS(815), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46151,10 +46329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1458), 28, + ACTIONS(817), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46180,14 +46358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8913] = 5, + [8868] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1462), 1, - anon_sym_COLON_COLON, - ACTIONS(787), 14, + ACTIONS(1460), 1, + anon_sym_QMARK, + ACTIONS(1458), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46202,7 +46380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 27, + ACTIONS(1456), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -46230,16 +46408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8968] = 6, + [8923] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(439), 1, - sym_label, - ACTIONS(1466), 14, + ACTIONS(1335), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46254,10 +46428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1464), 26, + ACTIONS(1333), 28, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_DOT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -46281,12 +46457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9025] = 4, + [8976] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(795), 14, + ACTIONS(1462), 1, + anon_sym_DOT, + ACTIONS(1335), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46301,11 +46479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(797), 28, + ACTIONS(1333), 27, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_QMARK, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -46330,12 +46507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9078] = 4, + [9031] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1472), 14, + ACTIONS(811), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46350,10 +46527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1470), 28, + ACTIONS(813), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46379,12 +46556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9131] = 4, + [9084] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1476), 14, + ACTIONS(1467), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46399,7 +46576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1474), 28, + ACTIONS(1465), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, @@ -46428,12 +46605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9184] = 4, + [9137] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1480), 14, + ACTIONS(1471), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46448,10 +46625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1478), 28, + ACTIONS(1469), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46477,12 +46654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9237] = 4, + [9190] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1484), 14, + ACTIONS(1475), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46497,7 +46674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1482), 28, + ACTIONS(1473), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, @@ -46526,12 +46703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9290] = 4, + [9243] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1488), 14, + ACTIONS(1477), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46546,10 +46723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1486), 28, + ACTIONS(1350), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46575,12 +46752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9343] = 4, + [9296] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1492), 14, + ACTIONS(1481), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46595,7 +46772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1490), 28, + ACTIONS(1479), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, @@ -46624,16 +46801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9396] = 6, + [9349] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1498), 1, - anon_sym_LPAREN, - STATE(422), 1, - sym_arguments, - ACTIONS(1496), 14, + ACTIONS(1485), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46648,9 +46821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1494), 26, + ACTIONS(1483), 28, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46658,6 +46832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -46675,12 +46850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9453] = 4, + [9402] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(815), 14, + ACTIONS(1489), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46695,10 +46870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(817), 28, + ACTIONS(1487), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46724,12 +46899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9506] = 4, + [9455] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(827), 14, + ACTIONS(1493), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46744,10 +46919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(829), 28, + ACTIONS(1491), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46773,14 +46948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9559] = 5, + [9508] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1500), 1, - anon_sym_DOT, - ACTIONS(1335), 14, + ACTIONS(1497), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46795,10 +46968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1333), 27, + ACTIONS(1495), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -46823,12 +46997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9614] = 4, + [9561] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(807), 14, + ACTIONS(1501), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46843,10 +47017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(809), 28, + ACTIONS(1499), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46872,12 +47046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9667] = 4, + [9614] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1335), 14, + ACTIONS(1505), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46892,7 +47066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1333), 28, + ACTIONS(1503), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, @@ -46921,14 +47095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9720] = 5, + [9667] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1507), 1, - anon_sym_QMARK, - ACTIONS(1505), 14, + ACTIONS(1509), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46943,9 +47115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1503), 27, + ACTIONS(1507), 28, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -46971,14 +47144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9775] = 5, + [9720] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1509), 1, - anon_sym_DOT, - ACTIONS(1335), 14, + ACTIONS(1513), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -46993,10 +47164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1333), 27, + ACTIONS(1511), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -47021,12 +47193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9830] = 4, + [9773] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1512), 14, + ACTIONS(1515), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47070,14 +47242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9883] = 5, + [9826] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1518), 1, - anon_sym_DOT, - ACTIONS(1516), 14, + ACTIONS(1517), 1, + anon_sym_COLON_COLON, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47092,10 +47264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1514), 27, + ACTIONS(753), 27, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, @@ -47120,12 +47292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9938] = 4, + [9881] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1523), 14, + ACTIONS(1523), 1, + anon_sym_LPAREN, + STATE(426), 1, + sym_arguments, + ACTIONS(1521), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47140,10 +47316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1521), 28, + ACTIONS(1519), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -47151,7 +47326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -47169,14 +47343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9991] = 5, + [9938] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1525), 1, anon_sym_QMARK, - ACTIONS(1505), 14, + ACTIONS(1458), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47191,7 +47365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1503), 27, + ACTIONS(1456), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47219,18 +47393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10046] = 7, + [9993] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1411), 1, + ACTIONS(1373), 1, anon_sym_COLON_COLON, - ACTIONS(1413), 1, + ACTIONS(1375), 1, anon_sym_LBRACE, - STATE(433), 1, + STATE(443), 1, sym_field_initializer_list, - ACTIONS(787), 14, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47245,7 +47419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 25, + ACTIONS(753), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47271,12 +47445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10105] = 4, + [10052] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(799), 14, + ACTIONS(807), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47291,7 +47465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(801), 28, + ACTIONS(809), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, @@ -47320,7 +47494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10158] = 4, + [10105] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -47340,7 +47514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 28, + ACTIONS(1359), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -47369,17 +47543,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10211] = 7, + [10158] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(791), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(793), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(1536), 1, + anon_sym_SQUOTE, anon_sym_as, - ACTIONS(1538), 1, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [10211] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, ACTIONS(1532), 14, anon_sym_SLASH, anon_sym_DASH, @@ -47395,10 +47612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1530), 24, + ACTIONS(1530), 27, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47420,16 +47640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10269] = 6, + [10263] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1538), 1, - anon_sym_LBRACK, - ACTIONS(1542), 14, + ACTIONS(1536), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47444,11 +47660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1540), 25, + ACTIONS(1534), 27, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47470,12 +47688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10325] = 4, + [10315] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1546), 14, + ACTIONS(1540), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47490,7 +47708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1544), 27, + ACTIONS(1538), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47518,12 +47736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10377] = 4, + [10367] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1550), 14, + ACTIONS(1544), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47538,7 +47756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1548), 27, + ACTIONS(1542), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47566,12 +47784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10429] = 4, + [10419] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1554), 14, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1548), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47586,13 +47808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1552), 27, + ACTIONS(1546), 25, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47614,12 +47834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10481] = 4, + [10475] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1496), 14, + ACTIONS(1556), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47634,7 +47854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1494), 27, + ACTIONS(1554), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47662,12 +47882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10533] = 4, + [10527] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1558), 14, + ACTIONS(1560), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47682,7 +47902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1556), 27, + ACTIONS(1558), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47710,12 +47930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10585] = 4, + [10579] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1562), 14, + ACTIONS(1564), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47730,7 +47950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1560), 27, + ACTIONS(1562), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47758,12 +47978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10637] = 4, + [10631] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1566), 14, + ACTIONS(1568), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47778,7 +47998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1564), 27, + ACTIONS(1566), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47806,12 +48026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10689] = 4, + [10683] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1570), 14, + ACTIONS(1572), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47826,7 +48046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1568), 27, + ACTIONS(1570), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47854,12 +48074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10741] = 4, + [10735] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1574), 14, + ACTIONS(1576), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47874,7 +48094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1572), 27, + ACTIONS(1574), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47902,12 +48122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10793] = 4, + [10787] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1578), 14, + ACTIONS(1580), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47922,7 +48142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1576), 27, + ACTIONS(1578), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47950,12 +48170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10845] = 4, + [10839] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1582), 14, + ACTIONS(1584), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -47970,7 +48190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1580), 27, + ACTIONS(1582), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -47998,12 +48218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10897] = 4, + [10891] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1586), 14, + ACTIONS(1586), 1, + anon_sym_LBRACE, + ACTIONS(1528), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48018,15 +48240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1584), 27, + ACTIONS(1359), 26, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -48046,7 +48267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [10949] = 4, + [10945] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -48094,7 +48315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11001] = 4, + [10997] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -48142,14 +48363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11053] = 5, + [11049] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1528), 14, + ACTIONS(1598), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48164,14 +48383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 26, + ACTIONS(1596), 27, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -48191,12 +48411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11107] = 4, + [11101] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1600), 14, + ACTIONS(1602), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48211,7 +48431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1598), 27, + ACTIONS(1600), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48239,12 +48459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11159] = 4, + [11153] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1604), 14, + ACTIONS(1606), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48259,7 +48479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1602), 27, + ACTIONS(1604), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48287,12 +48507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11211] = 4, + [11205] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1608), 14, + ACTIONS(1610), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48307,7 +48527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1606), 27, + ACTIONS(1608), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48335,12 +48555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11263] = 4, + [11257] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1612), 14, + ACTIONS(1614), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48355,7 +48575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1610), 27, + ACTIONS(1612), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48383,12 +48603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11315] = 4, + [11309] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1616), 14, + ACTIONS(1618), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48403,7 +48623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1614), 27, + ACTIONS(1616), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48431,12 +48651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11367] = 4, + [11361] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1620), 14, + ACTIONS(1622), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48451,7 +48671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1618), 27, + ACTIONS(1620), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48479,12 +48699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11419] = 4, + [11413] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1624), 14, + ACTIONS(1626), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48499,7 +48719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1622), 27, + ACTIONS(1624), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48527,12 +48747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11471] = 4, + [11465] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1628), 14, + ACTIONS(1630), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48547,7 +48767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1626), 27, + ACTIONS(1628), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48575,12 +48795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11523] = 4, + [11517] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1632), 14, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1634), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48595,13 +48821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1630), 27, + ACTIONS(1632), 24, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48623,12 +48846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11575] = 4, + [11575] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1636), 14, + ACTIONS(1638), 1, + anon_sym_LBRACE, + ACTIONS(1430), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48643,15 +48868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1634), 27, + ACTIONS(1368), 26, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -48671,12 +48895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11627] = 4, + [11629] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1640), 14, + ACTIONS(1642), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48691,7 +48915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1638), 27, + ACTIONS(1640), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48719,12 +48943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11679] = 4, + [11681] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1644), 14, + ACTIONS(1646), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48739,7 +48963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1642), 27, + ACTIONS(1644), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48767,16 +48991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11731] = 6, + [11733] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1538), 1, - anon_sym_LBRACK, - ACTIONS(1648), 14, + ACTIONS(1650), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48791,11 +49011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1646), 25, + ACTIONS(1648), 27, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48817,12 +49039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11787] = 4, + [11785] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1652), 14, + ACTIONS(1654), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48837,7 +49059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1650), 27, + ACTIONS(1652), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -48865,14 +49087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11839] = 5, + [11837] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1654), 1, + ACTIONS(1656), 1, anon_sym_LBRACE, - ACTIONS(1430), 14, + ACTIONS(1477), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48887,7 +49109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1359), 26, + ACTIONS(1350), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -48914,12 +49136,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11893] = 4, + [11891] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1521), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1519), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [11943] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1658), 14, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1660), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48934,13 +49208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1656), 27, + ACTIONS(1658), 25, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48962,12 +49234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11945] = 4, + [11999] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1662), 14, + ACTIONS(1662), 1, + anon_sym_LBRACE, + ACTIONS(1515), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -48982,15 +49256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1660), 27, + ACTIONS(1341), 26, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -49010,7 +49283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [11997] = 4, + [12053] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -49058,7 +49331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12049] = 4, + [12105] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -49106,7 +49379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12101] = 4, + [12157] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -49154,7 +49427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12153] = 4, + [12209] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -49202,14 +49475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12205] = 5, + [12261] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1680), 1, - anon_sym_LBRACE, - ACTIONS(1432), 14, + ACTIONS(1682), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49224,54 +49495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1368), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [12259] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1684), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1682), 27, + ACTIONS(1680), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -49299,12 +49523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12311] = 4, + [12313] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1688), 14, + ACTIONS(1686), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49319,7 +49543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1686), 27, + ACTIONS(1684), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -49347,12 +49571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12363] = 4, + [12365] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1692), 14, + ACTIONS(1690), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49367,7 +49591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1690), 27, + ACTIONS(1688), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -49395,14 +49619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12415] = 5, + [12417] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1694), 1, - anon_sym_LBRACE, - ACTIONS(1512), 14, + ACTIONS(1694), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49417,14 +49639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1341), 26, + ACTIONS(1692), 27, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -49691,7 +49914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(1716), 1, anon_sym_LBRACE, - ACTIONS(1666), 14, + ACTIONS(1606), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49706,7 +49929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1664), 25, + ACTIONS(1604), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -49739,7 +49962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(1718), 1, anon_sym_COLON_COLON, - ACTIONS(787), 14, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49754,7 +49977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 25, + ACTIONS(753), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, @@ -49780,20 +50003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12835] = 7, + [12835] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1680), 1, + ACTIONS(1720), 1, anon_sym_LBRACE, - ACTIONS(1364), 2, - anon_sym_QMARK, - anon_sym_LT2, - ACTIONS(1370), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(1432), 16, + ACTIONS(1606), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49806,20 +50023,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(1368), 19, + ACTIONS(1604), 25, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, @@ -49829,18 +50049,19 @@ static const 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, - [12892] = 7, + [12888] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1596), 1, + ACTIONS(1586), 1, anon_sym_LBRACE, - ACTIONS(1346), 2, + ACTIONS(1355), 2, anon_sym_QMARK, anon_sym_LT2, - ACTIONS(1352), 2, + ACTIONS(1361), 2, anon_sym_LPAREN, anon_sym_RPAREN, ACTIONS(1528), 16, @@ -49860,7 +50081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(1350), 19, + ACTIONS(1359), 19, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT, @@ -49880,12 +50101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [12949] = 7, + [12945] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1694), 1, + ACTIONS(1662), 1, anon_sym_LBRACE, ACTIONS(1337), 2, anon_sym_QMARK, @@ -49893,7 +50114,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1343), 2, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1512), 16, + ACTIONS(1515), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49930,14 +50151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [13006] = 5, + [13002] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1720), 1, + ACTIONS(1656), 1, anon_sym_LBRACE, - ACTIONS(1666), 14, + ACTIONS(1346), 2, + anon_sym_QMARK, + anon_sym_LT2, + ACTIONS(1352), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(1477), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -49950,23 +50177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1664), 25, - anon_sym_SEMI, + anon_sym_LT_LT_EQ, + ACTIONS(1350), 19, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, 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, @@ -49976,19 +50200,18 @@ static const 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, [13059] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_LBRACE, - ACTIONS(1355), 2, + ACTIONS(1364), 2, anon_sym_QMARK, anon_sym_LT2, - ACTIONS(1361), 2, + ACTIONS(1370), 2, anon_sym_LPAREN, anon_sym_RPAREN, ACTIONS(1430), 16, @@ -50008,7 +50231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(1359), 19, + ACTIONS(1368), 19, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT, @@ -50028,45 +50251,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [13116] = 15, + [13116] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1532), 2, - anon_sym_EQ, - anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1530), 18, + ACTIONS(1634), 5, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50075,6 +50291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, 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, @@ -50085,47 +50305,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13188] = 10, + [13182] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, - anon_sym_LBRACK, - ACTIONS(1724), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1355), 2, + anon_sym_QMARK, + anon_sym_LT2, + ACTIONS(1361), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(1528), 16, anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 7, + anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, + anon_sym_STAR, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1530), 22, - anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(1359), 19, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACK, 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, @@ -50135,103 +50352,55 @@ static const 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, - [13250] = 12, + [13236] = 16, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1634), 2, + anon_sym_EQ, + anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1736), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1738), 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, - [13316] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, - anon_sym_LBRACK, - ACTIONS(1724), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1722), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 9, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1530), 22, + ACTIONS(1632), 17, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - 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, @@ -50242,39 +50411,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13376] = 13, + [13310] = 15, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, + ACTIONS(1634), 2, + anon_sym_EQ, + anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1736), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 4, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1530), 22, + ACTIONS(1738), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1632), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50283,10 +50458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, 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, @@ -50297,24 +50468,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13444] = 17, + [13382] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -50322,24 +50493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1740), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1742), 2, anon_sym_EQ, anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1738), 16, + ACTIONS(1740), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50356,24 +50527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13520] = 19, + [13458] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -50385,21 +50556,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1552), 6, + ACTIONS(1704), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50417,55 +50588,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13600] = 17, + [13538] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1754), 2, - anon_sym_EQ, - anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1752), 16, + ACTIONS(1634), 4, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1632), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + 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, @@ -50476,24 +50643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13676] = 17, + [13606] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -50501,24 +50668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1758), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1754), 2, anon_sym_EQ, anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1756), 16, + ACTIONS(1752), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50535,34 +50702,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13752] = 8, + [13682] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, + anon_sym_AMP, + ACTIONS(1724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1730), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 11, - anon_sym_DASH, + ACTIONS(1634), 6, anon_sym_EQ, anon_sym_BANG, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1530), 22, + ACTIONS(1632), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50585,57 +50755,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13810] = 19, + [13746] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1728), 1, - anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1656), 6, + ACTIONS(1634), 7, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1750), 10, + 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, @@ -50646,54 +50807,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13890] = 16, + [13808] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1532), 2, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 2, + anon_sym_EQ, + anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 17, + ACTIONS(1756), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50704,24 +50866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13964] = 17, + [13884] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -50729,11 +50891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1762), 2, anon_sym_EQ, anon_sym_BANG, @@ -50741,7 +50903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -50763,57 +50925,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14040] = 19, + [13960] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(292), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1614), 6, + ACTIONS(290), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50824,49 +50984,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14120] = 17, + [14036] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(292), 2, - anon_sym_EQ, - anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1766), 2, + anon_sym_EQ, + anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(290), 16, + ACTIONS(1764), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50883,49 +51043,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14196] = 11, + [14112] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, + ACTIONS(1728), 1, + anon_sym_CARET, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1736), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 6, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 22, + ACTIONS(1738), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1582), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - 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(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50936,24 +51104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14260] = 17, + [14192] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -50961,24 +51129,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1770), 2, anon_sym_EQ, anon_sym_BANG, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1764), 16, + ACTIONS(1768), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -50995,55 +51163,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14336] = 17, + [14268] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1722), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1634), 9, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1632), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [14328] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1770), 2, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1768), 16, + ACTIONS(1578), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51054,44 +51275,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14412] = 6, + [14408] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1337), 2, - anon_sym_QMARK, - anon_sym_LT2, - ACTIONS(1343), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(1512), 16, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1722), 3, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1634), 11, anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, - anon_sym_STAR, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(1341), 19, + ACTIONS(1632), 22, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, @@ -51101,17 +51323,18 @@ static const 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, [14466] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, + ACTIONS(1382), 1, anon_sym_LT2, - STATE(830), 1, + STATE(843), 1, sym_type_arguments, - ACTIONS(1698), 16, + ACTIONS(1560), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51128,7 +51351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(1696), 20, + ACTIONS(1558), 20, anon_sym_COMMA, anon_sym_DOT, anon_sym_as, @@ -51154,11 +51377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(783), 3, + ACTIONS(747), 3, anon_sym_case, anon_sym_default, anon_sym_RBRACE, - ACTIONS(787), 14, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51173,7 +51396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 21, + ACTIONS(753), 21, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -51202,9 +51425,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(1772), 1, anon_sym_COLON_COLON, - STATE(433), 1, + STATE(443), 1, sym_field_initializer_list, - ACTIONS(787), 14, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51219,7 +51442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 22, + ACTIONS(753), 22, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -51242,48 +51465,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14623] = 20, + [14623] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(1333), 1, + anon_sym_QMARK, ACTIONS(1774), 1, + anon_sym_RPAREN, + ACTIONS(751), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(753), 21, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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, + [14675] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1777), 1, anon_sym_SEMI, - ACTIONS(1776), 1, + ACTIONS(1779), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(1783), 1, anon_sym_const, - ACTIONS(1782), 1, + ACTIONS(1785), 1, anon_sym_enum, - ACTIONS(1784), 1, + ACTIONS(1787), 1, anon_sym_fn, - ACTIONS(1786), 1, + ACTIONS(1789), 1, anon_sym_impl, - ACTIONS(1788), 1, + ACTIONS(1791), 1, anon_sym_interface, - ACTIONS(1790), 1, + ACTIONS(1793), 1, anon_sym_let, - ACTIONS(1794), 1, + ACTIONS(1797), 1, anon_sym_struct, - ACTIONS(1796), 1, + ACTIONS(1799), 1, anon_sym_throw, - ACTIONS(1798), 1, + ACTIONS(1801), 1, anon_sym_try, - ACTIONS(1800), 1, + ACTIONS(1803), 1, anon_sym_type, - ACTIONS(1802), 1, + ACTIONS(1805), 1, anon_sym_use, - ACTIONS(1804), 1, + ACTIONS(1807), 1, anon_sym_RBRACE, - STATE(957), 1, + STATE(951), 1, sym_visibility_modifier, - ACTIONS(1778), 2, + ACTIONS(1781), 2, anon_sym_bench, anon_sym_test, - ACTIONS(1792), 2, + ACTIONS(1795), 2, anon_sym_pub, sym_crate, - STATE(498), 18, + STATE(500), 18, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -51302,92 +51571,48 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [14703] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1528), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1350), 23, - anon_sym_COLON_COLON, - anon_sym_DOT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - [14751] = 20, + [14755] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1806), 1, + ACTIONS(1777), 1, anon_sym_SEMI, - ACTIONS(1809), 1, + ACTIONS(1779), 1, anon_sym_POUND, - ACTIONS(1815), 1, + ACTIONS(1783), 1, anon_sym_const, - ACTIONS(1818), 1, + ACTIONS(1785), 1, anon_sym_enum, - ACTIONS(1821), 1, + ACTIONS(1787), 1, anon_sym_fn, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_impl, - ACTIONS(1827), 1, + ACTIONS(1791), 1, anon_sym_interface, - ACTIONS(1830), 1, + ACTIONS(1793), 1, anon_sym_let, - ACTIONS(1836), 1, + ACTIONS(1797), 1, anon_sym_struct, - ACTIONS(1839), 1, + ACTIONS(1799), 1, anon_sym_throw, - ACTIONS(1842), 1, + ACTIONS(1801), 1, anon_sym_try, - ACTIONS(1845), 1, + ACTIONS(1803), 1, anon_sym_type, - ACTIONS(1848), 1, + ACTIONS(1805), 1, anon_sym_use, - ACTIONS(1851), 1, + ACTIONS(1809), 1, anon_sym_RBRACE, - STATE(957), 1, + STATE(951), 1, sym_visibility_modifier, - ACTIONS(1812), 2, + ACTIONS(1781), 2, anon_sym_bench, anon_sym_test, - ACTIONS(1833), 2, + ACTIONS(1795), 2, anon_sym_pub, sym_crate, - STATE(498), 18, + STATE(509), 18, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -51406,61 +51631,76 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [14831] = 5, + [14835] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1718), 1, - anon_sym_COLON_COLON, - ACTIONS(787), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(789), 22, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [14881] = 6, + ACTIONS(1777), 1, + anon_sym_SEMI, + ACTIONS(1779), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + anon_sym_const, + ACTIONS(1785), 1, + anon_sym_enum, + ACTIONS(1787), 1, + anon_sym_fn, + ACTIONS(1789), 1, + anon_sym_impl, + ACTIONS(1791), 1, + anon_sym_interface, + ACTIONS(1793), 1, + anon_sym_let, + ACTIONS(1797), 1, + anon_sym_struct, + ACTIONS(1799), 1, + anon_sym_throw, + ACTIONS(1801), 1, + anon_sym_try, + ACTIONS(1803), 1, + anon_sym_type, + ACTIONS(1805), 1, + anon_sym_use, + ACTIONS(1811), 1, + anon_sym_RBRACE, + STATE(951), 1, + sym_visibility_modifier, + ACTIONS(1781), 2, + anon_sym_bench, + anon_sym_test, + ACTIONS(1795), 2, + anon_sym_pub, + sym_crate, + STATE(509), 18, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_struct_item, + sym_enum_item, + sym_const_item, + sym_type_item, + sym_function_item, + sym_function_signature_item, + sym_test_item, + sym_try_item, + sym_throw_item, + sym_impl_item, + sym_interface_item, + sym_associated_type, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [14915] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1333), 1, + ACTIONS(1446), 1, anon_sym_QMARK, - ACTIONS(1853), 1, + ACTIONS(1813), 1, anon_sym_RPAREN, - ACTIONS(787), 14, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51475,7 +51715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 21, + ACTIONS(753), 21, anon_sym_COMMA, anon_sym_DOT, anon_sym_as, @@ -51497,12 +51737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14933] = 4, + [14967] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1512), 14, + ACTIONS(1430), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51517,7 +51757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1341), 23, + ACTIONS(1368), 23, anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, @@ -51541,16 +51781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14981] = 6, + [15015] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1514), 1, - anon_sym_QMARK, - ACTIONS(1856), 1, - anon_sym_RPAREN, - ACTIONS(787), 14, + ACTIONS(1515), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51565,11 +51801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 21, - anon_sym_COMMA, + ACTIONS(1341), 23, + anon_sym_COLON_COLON, anon_sym_DOT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -51587,14 +51825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15033] = 5, + [15063] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1859), 1, - anon_sym_COLON_COLON, - ACTIONS(787), 14, + ACTIONS(1477), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51609,7 +51845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(789), 22, + ACTIONS(1350), 23, + anon_sym_COLON_COLON, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -51632,12 +51869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15083] = 4, + [15111] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1430), 14, + ACTIONS(1528), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51676,108 +51913,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15131] = 20, + [15159] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1774), 1, + ACTIONS(1777), 1, anon_sym_SEMI, - ACTIONS(1776), 1, + ACTIONS(1779), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(1783), 1, anon_sym_const, - ACTIONS(1782), 1, + ACTIONS(1785), 1, anon_sym_enum, - ACTIONS(1784), 1, + ACTIONS(1787), 1, anon_sym_fn, - ACTIONS(1786), 1, + ACTIONS(1789), 1, anon_sym_impl, - ACTIONS(1788), 1, + ACTIONS(1791), 1, anon_sym_interface, - ACTIONS(1790), 1, + ACTIONS(1793), 1, anon_sym_let, - ACTIONS(1794), 1, + ACTIONS(1797), 1, anon_sym_struct, - ACTIONS(1796), 1, + ACTIONS(1799), 1, anon_sym_throw, - ACTIONS(1798), 1, + ACTIONS(1801), 1, anon_sym_try, - ACTIONS(1800), 1, + ACTIONS(1803), 1, anon_sym_type, - ACTIONS(1802), 1, + ACTIONS(1805), 1, anon_sym_use, - ACTIONS(1861), 1, + ACTIONS(1816), 1, anon_sym_RBRACE, - STATE(957), 1, - sym_visibility_modifier, - ACTIONS(1778), 2, - anon_sym_bench, - anon_sym_test, - ACTIONS(1792), 2, - anon_sym_pub, - sym_crate, - STATE(506), 18, - sym_empty_statement, - sym_attribute_item, - sym_inner_attribute_item, - sym_struct_item, - sym_enum_item, - sym_const_item, - sym_type_item, - sym_function_item, - sym_function_signature_item, - sym_test_item, - sym_try_item, - sym_throw_item, - sym_impl_item, - sym_interface_item, - sym_associated_type, - sym_let_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [15211] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1774), 1, - anon_sym_SEMI, - ACTIONS(1776), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_const, - ACTIONS(1782), 1, - anon_sym_enum, - ACTIONS(1784), 1, - anon_sym_fn, - ACTIONS(1786), 1, - anon_sym_impl, - ACTIONS(1788), 1, - anon_sym_interface, - ACTIONS(1790), 1, - anon_sym_let, - ACTIONS(1794), 1, - anon_sym_struct, - ACTIONS(1796), 1, - anon_sym_throw, - ACTIONS(1798), 1, - anon_sym_try, - ACTIONS(1800), 1, - anon_sym_type, - ACTIONS(1802), 1, - anon_sym_use, - ACTIONS(1863), 1, - anon_sym_RBRACE, - STATE(957), 1, + STATE(951), 1, sym_visibility_modifier, - ACTIONS(1778), 2, + ACTIONS(1781), 2, anon_sym_bench, anon_sym_test, - ACTIONS(1792), 2, + ACTIONS(1795), 2, anon_sym_pub, sym_crate, - STATE(498), 18, + STATE(501), 18, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -51796,57 +51973,14 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [15291] = 5, + [15239] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - STATE(439), 1, - sym_label, - ACTIONS(1466), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1464), 22, - anon_sym_DOT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - [15341] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1432), 14, + ACTIONS(1818), 1, + anon_sym_COLON_COLON, + ACTIONS(751), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51861,8 +51995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1368), 23, - anon_sym_COLON_COLON, + ACTIONS(753), 22, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -51885,48 +52018,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15389] = 20, + [15289] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1774), 1, + ACTIONS(1820), 1, anon_sym_SEMI, - ACTIONS(1776), 1, + ACTIONS(1823), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(1829), 1, anon_sym_const, - ACTIONS(1782), 1, + ACTIONS(1832), 1, anon_sym_enum, - ACTIONS(1784), 1, + ACTIONS(1835), 1, anon_sym_fn, - ACTIONS(1786), 1, + ACTIONS(1838), 1, anon_sym_impl, - ACTIONS(1788), 1, + ACTIONS(1841), 1, anon_sym_interface, - ACTIONS(1790), 1, + ACTIONS(1844), 1, anon_sym_let, - ACTIONS(1794), 1, + ACTIONS(1850), 1, anon_sym_struct, - ACTIONS(1796), 1, + ACTIONS(1853), 1, anon_sym_throw, - ACTIONS(1798), 1, + ACTIONS(1856), 1, anon_sym_try, - ACTIONS(1800), 1, + ACTIONS(1859), 1, anon_sym_type, - ACTIONS(1802), 1, + ACTIONS(1862), 1, anon_sym_use, ACTIONS(1865), 1, anon_sym_RBRACE, - STATE(957), 1, + STATE(951), 1, sym_visibility_modifier, - ACTIONS(1778), 2, + ACTIONS(1826), 2, anon_sym_bench, anon_sym_test, - ACTIONS(1792), 2, + ACTIONS(1847), 2, anon_sym_pub, sym_crate, - STATE(496), 18, + STATE(509), 18, sym_empty_statement, sym_attribute_item, sym_inner_attribute_item, @@ -51945,12 +52078,59 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [15469] = 4, + [15369] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1666), 14, + ACTIONS(1718), 1, + anon_sym_COLON_COLON, + ACTIONS(751), 14, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(753), 22, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [15419] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + STATE(465), 1, + sym_label, + ACTIONS(1442), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -51965,7 +52145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1664), 22, + ACTIONS(1440), 22, anon_sym_DOT, anon_sym_SQUOTE, anon_sym_as, @@ -51988,26 +52168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15516] = 21, + [15469] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(426), 1, - anon_sym_RPAREN, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -52017,22 +52195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1867), 1, anon_sym_COMMA, - STATE(1253), 1, - aux_sym_arguments_repeat1, + ACTIONS(1869), 1, + anon_sym_RBRACE, + STATE(1254), 1, + aux_sym_array_expression_repeat1, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -52048,52 +52228,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15597] = 17, + [15550] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, - anon_sym_AMP, - ACTIONS(1875), 1, - anon_sym_CARET, - ACTIONS(1879), 1, - anon_sym_PIPE, - ACTIONS(1881), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1740), 2, - anon_sym_EQ, - anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1634), 7, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 19, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1738), 13, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52104,39 +52277,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15670] = 11, + [15609] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, - anon_sym_AMP, - ACTIONS(1871), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1660), 14, anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 6, + anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1530), 19, - anon_sym_SQUOTE, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1658), 20, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -52154,52 +52322,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15731] = 17, + [15660] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, - anon_sym_CARET, - ACTIONS(1879), 1, - anon_sym_PIPE, - ACTIONS(1881), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1762), 2, - anon_sym_EQ, - anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1634), 6, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 19, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1760), 13, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52210,52 +52372,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15804] = 17, + [15721] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_COMMA, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1887), 1, + anon_sym_RPAREN, + ACTIONS(1889), 1, + sym_crate, + STATE(657), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1160), 1, + sym__option_type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(613), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [15814] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1754), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1891), 1, + anon_sym_COMMA, + ACTIONS(1893), 1, + anon_sym_RPAREN, + STATE(1242), 1, + aux_sym_arguments_repeat1, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1752), 13, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52266,38 +52498,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15877] = 12, + [15895] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1871), 2, + ACTIONS(1897), 1, + anon_sym_PIPE, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1634), 4, anon_sym_EQ, anon_sym_BANG, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 19, + ACTIONS(1632), 19, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, @@ -52317,39 +52550,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15940] = 13, + [15960] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, - anon_sym_PIPE, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 4, + ACTIONS(1634), 5, anon_sym_EQ, anon_sym_BANG, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 19, + anon_sym_PIPE, + ACTIONS(1632), 19, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, @@ -52369,49 +52601,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16005] = 17, + [16023] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(292), 2, + ACTIONS(1758), 2, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(290), 13, + ACTIONS(1756), 13, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, @@ -52425,89 +52657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16078] = 27, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_COMMA, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1897), 1, - anon_sym_RPAREN, - ACTIONS(1899), 1, - sym_crate, - STATE(649), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1242), 1, - sym__option_type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(606), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [16171] = 6, + [16096] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1542), 14, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1871), 3, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1634), 11, anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, - anon_sym_STAR, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_PLUS, anon_sym_LT, @@ -52515,10 +52684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1540), 20, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(1632), 19, + anon_sym_SQUOTE, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -52536,39 +52704,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16222] = 4, + [16151] = 15, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1666), 14, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(1895), 1, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1897), 1, anon_sym_PIPE, + ACTIONS(1634), 2, + anon_sym_EQ, + anon_sym_BANG, + ACTIONS(1873), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1664), 22, - anon_sym_DOT, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1905), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1632), 15, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, 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, @@ -52579,24 +52758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16269] = 21, + [16220] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(428), 1, + anon_sym_RPAREN, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -52604,26 +52785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1901), 1, + ACTIONS(1907), 1, anon_sym_COMMA, - ACTIONS(1903), 1, - anon_sym_RBRACE, - STATE(1178), 1, - aux_sym_array_expression_repeat1, + STATE(1192), 1, + aux_sym_arguments_repeat1, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -52639,54 +52818,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16350] = 19, + [16301] = 16, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(1634), 2, anon_sym_EQ, - ACTIONS(1871), 2, + anon_sym_BANG, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1552), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1905), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1632), 14, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1869), 3, + anon_sym_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, + [16372] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1873), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1634), 9, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1632), 19, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52697,50 +52921,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16427] = 15, + [16429] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1532), 2, + ACTIONS(1901), 1, + anon_sym_AMP_AMP, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1770), 2, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 15, + ACTIONS(1768), 13, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52751,51 +52977,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16496] = 16, + [16502] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1532), 2, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1909), 1, anon_sym_EQ, - anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1704), 3, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 14, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52806,44 +53035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16567] = 9, + [16579] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1871), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1869), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 9, - anon_sym_EQ, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, + ACTIONS(1895), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1897), 1, anon_sym_PIPE, + ACTIONS(1901), 1, + anon_sym_AMP_AMP, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1909), 1, + anon_sym_EQ, + ACTIONS(1873), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1530), 19, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 3, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1871), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52854,49 +53093,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16624] = 17, + [16656] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1770), 2, + ACTIONS(1762), 2, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1768), 13, + ACTIONS(1760), 13, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, @@ -52910,56 +53149,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16697] = 21, + [16729] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(1911), 1, - anon_sym_RBRACE, - STATE(1201), 1, - aux_sym_map_expression_repeat1, - ACTIONS(1724), 2, + anon_sym_EQ, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1578), 3, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52970,24 +53207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16778] = 21, + [16806] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -52998,23 +53235,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1913), 1, anon_sym_COMMA, ACTIONS(1915), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym_arguments_repeat1, + anon_sym_RBRACE, + STATE(1142), 1, + aux_sym_map_expression_repeat1, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -53030,52 +53267,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16859] = 17, + [16887] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, - anon_sym_LBRACK, - ACTIONS(1873), 1, - anon_sym_AMP, - ACTIONS(1875), 1, - anon_sym_CARET, - ACTIONS(1879), 1, - anon_sym_PIPE, - ACTIONS(1881), 1, - anon_sym_AMP_AMP, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1758), 2, + ACTIONS(1606), 14, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1871), 2, - anon_sym_DASH, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_PLUS, - ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 2, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1604), 22, + anon_sym_DOT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1756), 13, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53086,16 +53310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16932] = 6, + [16934] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1648), 14, + ACTIONS(1548), 14, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, @@ -53110,7 +53334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1646), 20, + ACTIONS(1546), 20, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACE, @@ -53131,54 +53355,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16983] = 19, + [16985] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(292), 2, anon_sym_EQ, - ACTIONS(1871), 2, + anon_sym_BANG, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1614), 3, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1907), 10, + ACTIONS(290), 13, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53189,54 +53411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17060] = 19, + [17058] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(1766), 2, anon_sym_EQ, - ACTIONS(1871), 2, + anon_sym_BANG, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1656), 3, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1907), 10, + ACTIONS(1764), 13, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53247,26 +53467,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17137] = 8, + [17131] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1869), 3, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, + anon_sym_AMP, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_PIPE, + ACTIONS(1901), 1, + anon_sym_AMP_AMP, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1742), 2, + anon_sym_EQ, + anon_sym_BANG, + ACTIONS(1873), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1875), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 11, + ACTIONS(1905), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1740), 13, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + [17204] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1606), 14, + anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, anon_sym_BANG, + anon_sym_STAR, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_PLUS, anon_sym_LT, @@ -53274,8 +53543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1530), 19, + ACTIONS(1604), 22, + anon_sym_DOT, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -53294,49 +53566,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17192] = 17, + [17251] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1881), 1, + ACTIONS(1901), 1, anon_sym_AMP_AMP, - ACTIONS(1883), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1766), 2, + ACTIONS(1754), 2, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1871), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1764), 13, + ACTIONS(1752), 13, anon_sym_SQUOTE, anon_sym_LBRACE, anon_sym_LPAREN, @@ -53350,45 +53622,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17265] = 10, + [17324] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1871), 2, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1923), 1, + anon_sym_AMP, + ACTIONS(1925), 1, + anon_sym_CARET, + ACTIONS(1929), 1, + anon_sym_PIPE, + ACTIONS(1931), 1, + anon_sym_AMP_AMP, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1578), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1887), 2, + ACTIONS(1927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 7, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 19, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1939), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53399,53 +53679,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17324] = 19, + [17400] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1917), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1634), 5, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53456,7 +53729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17400] = 26, + [17462] = 26, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -53473,42 +53746,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(1893), 1, + ACTIONS(1883), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1885), 1, anon_sym_pub, - ACTIONS(1899), 1, + ACTIONS(1889), 1, sym_crate, - ACTIONS(1919), 1, + ACTIONS(1941), 1, anon_sym_RPAREN, - STATE(667), 1, + STATE(677), 1, sym_visibility_modifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1342), 1, + STATE(1307), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, ACTIONS(1310), 2, sym_self, sym_super, - STATE(617), 2, + STATE(612), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -53520,26 +53793,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [17490] = 20, + [17552] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(440), 1, - anon_sym_RPAREN, - ACTIONS(1534), 1, + ACTIONS(256), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -53547,22 +53820,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1921), 1, - anon_sym_COMMA, + ACTIONS(1943), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -53578,117 +53851,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17568] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - ACTIONS(1923), 1, - anon_sym_RPAREN, - STATE(667), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1342), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(617), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [17658] = 19, + [17630] = 11, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, - anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1634), 6, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53699,53 +53900,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17734] = 19, + [17690] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1728), 1, - anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1927), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1634), 7, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1632), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53756,53 +53948,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17810] = 19, + [17748] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1758), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1929), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1756), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53813,26 +54003,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17886] = 20, + [17820] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -53840,22 +54028,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, + ACTIONS(1943), 1, anon_sym_SEMI, + ACTIONS(1945), 1, + anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -53871,51 +54061,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17964] = 17, + [17898] = 26, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + ACTIONS(1947), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1307), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(612), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [17988] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(270), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1740), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1738), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53926,26 +54183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18036] = 20, + [18066] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(268), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -53953,22 +54208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -53984,79 +54240,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18114] = 17, + [18142] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, - anon_sym_AMP, - ACTIONS(1939), 1, - anon_sym_CARET, - ACTIONS(1943), 1, - anon_sym_PIPE, - ACTIONS(1945), 1, - anon_sym_AMP_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1762), 2, - anon_sym_EQ, - anon_sym_BANG, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1933), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1949), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1760), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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, - [18186] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1534), 1, - anon_sym_DOT, - ACTIONS(1536), 1, + ACTIONS(1636), 1, anon_sym_as, - ACTIONS(1538), 1, - anon_sym_LBRACK, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54068,19 +54269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54096,26 +54297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18262] = 20, + [18218] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(258), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54123,22 +54322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54154,24 +54354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18340] = 20, + [18294] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54179,24 +54379,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1955), 1, - anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1955), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54212,26 +54411,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18418] = 20, + [18370] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(260), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54239,22 +54436,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1957), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54270,52 +54468,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18496] = 18, + [18446] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1917), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1634), 11, + anon_sym_DASH, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(1873), 1, anon_sym_AMP, - ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(1879), 1, - anon_sym_PIPE, - ACTIONS(1883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, - anon_sym_EQ, - ACTIONS(1871), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 2, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1957), 3, - anon_sym_SQUOTE, + ACTIONS(1632), 18, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_AMP_AMP, - ACTIONS(1885), 4, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1907), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54326,26 +54514,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18570] = 20, + [18500] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54353,22 +54539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54384,51 +54571,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18648] = 17, + [18576] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1758), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1961), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, + anon_sym_RPAREN, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1756), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54439,54 +54629,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18720] = 20, + [18654] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(498), 1, - anon_sym_RPAREN, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1909), 1, anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1921), 1, - anon_sym_COMMA, - ACTIONS(1724), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1965), 3, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54497,24 +54685,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18798] = 20, + [18728] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(563), 1, + anon_sym_RPAREN, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54522,24 +54712,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1959), 1, - anon_sym_RBRACE, + ACTIONS(1967), 1, + anon_sym_COMMA, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54555,26 +54743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18876] = 20, + [18806] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(256), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54582,22 +54768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54613,54 +54800,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18954] = 20, + [18882] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(280), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1724), 2, + ACTIONS(1704), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1939), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54671,53 +54857,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19032] = 19, + [18958] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1945), 1, - anon_sym_AMP_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1961), 1, - anon_sym_EQ, - ACTIONS(1614), 2, - anon_sym_LBRACE, - anon_sym_LPAREN, - ACTIONS(1935), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1634), 4, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1632), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54728,26 +54908,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19108] = 20, + [19022] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(284), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(454), 1, + anon_sym_RPAREN, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54755,22 +54935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, + ACTIONS(1967), 1, + anon_sym_COMMA, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54786,24 +54966,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19186] = 20, + [19100] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -54811,24 +54991,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1965), 1, - anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1971), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -54844,53 +55023,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19264] = 19, + [19176] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1903), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1909), 1, anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1967), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1722), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1973), 3, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54901,43 +55079,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19340] = 9, + [19250] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1933), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 9, - anon_sym_EQ, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1923), 1, anon_sym_AMP, + ACTIONS(1925), 1, anon_sym_CARET, + ACTIONS(1929), 1, + anon_sym_PIPE, + ACTIONS(1931), 1, + anon_sym_AMP_AMP, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1582), 2, + anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(1919), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1917), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1939), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54948,54 +55136,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19396] = 20, + [19326] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1961), 1, + ACTIONS(1746), 1, anon_sym_EQ, - ACTIONS(1969), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym_switch_block, - ACTIONS(1935), 2, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1963), 10, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55006,7 +55194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19474] = 26, + [19404] = 26, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -55023,42 +55211,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(1893), 1, + ACTIONS(1883), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1885), 1, anon_sym_pub, - ACTIONS(1899), 1, + ACTIONS(1889), 1, sym_crate, - ACTIONS(1971), 1, + ACTIONS(1975), 1, anon_sym_RPAREN, - STATE(667), 1, + STATE(677), 1, sym_visibility_modifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1342), 1, + STATE(1307), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, ACTIONS(1310), 2, sym_self, sym_super, - STATE(617), 2, + STATE(612), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -55070,26 +55258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [19564] = 20, + [19494] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -55097,22 +55283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, + ACTIONS(1967), 1, + anon_sym_COMMA, + ACTIONS(1977), 1, + anon_sym_RPAREN, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -55128,50 +55316,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19642] = 16, + [19572] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(266), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1532), 2, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 13, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55182,54 +55374,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19712] = 20, + [19650] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1770), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1768), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55240,53 +55429,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19790] = 19, + [19722] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1762), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1973), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1760), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55297,54 +55484,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19866] = 20, + [19794] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1728), 1, - anon_sym_CARET, - ACTIONS(1732), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1975), 1, - anon_sym_RBRACE, - ACTIONS(1724), 2, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1917), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1634), 9, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1632), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55355,51 +55531,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19944] = 17, + [19850] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1770), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1768), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55410,51 +55589,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20016] = 17, + [19928] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1754), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1979), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1752), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55465,53 +55646,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20088] = 19, + [20004] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(284), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1961), 1, + ACTIONS(1746), 1, anon_sym_EQ, - ACTIONS(1552), 2, - anon_sym_LBRACE, - anon_sym_LPAREN, - ACTIONS(1935), 2, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1963), 10, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55522,26 +55704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20164] = 20, + [20082] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -55549,22 +55729,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 2, + anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -55580,49 +55761,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20242] = 15, + [20158] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1877), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1897), 1, anon_sym_PIPE, - ACTIONS(1532), 2, + ACTIONS(1903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1909), 1, anon_sym_EQ, - anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1985), 1, + anon_sym_AMP_AMP, + ACTIONS(1873), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1875), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1983), 2, + anon_sym_SQUOTE, + anon_sym_LBRACE, + ACTIONS(1871), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1905), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1530), 14, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55633,53 +55818,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20310] = 19, + [20234] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(190), 1, + sym_switch_block, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1939), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55690,24 +55876,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20386] = 20, + [20312] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + ACTIONS(1989), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1307), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(612), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [20402] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -55715,24 +55965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1979), 1, - anon_sym_COMMA, - ACTIONS(1981), 1, - anon_sym_RPAREN, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1991), 1, + anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -55748,51 +55998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20464] = 17, + [20480] = 16, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE_PIPE, - ACTIONS(292), 2, + ACTIONS(1634), 2, anon_sym_EQ, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(290), 12, + ACTIONS(1632), 13, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55803,53 +56052,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20536] = 19, + [20550] = 15, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, - ACTIONS(1744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1634), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1983), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1632), 14, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55860,53 +56105,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20612] = 19, + [20618] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1961), 1, + ACTIONS(1754), 2, anon_sym_EQ, - ACTIONS(1656), 2, - anon_sym_LBRACE, - anon_sym_LPAREN, - ACTIONS(1935), 2, + anon_sym_BANG, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1963), 10, + ACTIONS(1752), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55917,46 +56160,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20688] = 12, + [20690] = 26, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + ACTIONS(1993), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1307), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(612), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [20780] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1935), 2, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1995), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55967,24 +56281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20750] = 19, + [20856] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -55996,19 +56310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1985), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56024,54 +56338,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20826] = 20, + [20932] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(288), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1961), 1, + ACTIONS(1746), 1, anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_LBRACE, - STATE(178), 1, - sym_switch_block, - ACTIONS(1935), 2, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1963), 10, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56082,53 +56396,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20904] = 19, + [21010] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(286), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1883), 1, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(1746), 1, anon_sym_EQ, - ACTIONS(1991), 1, - anon_sym_AMP_AMP, - ACTIONS(1871), 2, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1989), 2, - anon_sym_SQUOTE, - anon_sym_LBRACE, - ACTIONS(1869), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1885), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1907), 10, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56139,24 +56454,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20980] = 20, + [21088] = 26, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + ACTIONS(1999), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1307), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(612), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [21178] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -56164,24 +56543,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1921), 1, - anon_sym_COMMA, - ACTIONS(1993), 1, - anon_sym_RPAREN, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(2001), 1, + anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56197,47 +56576,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21058] = 13, + [21256] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(282), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1935), 2, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 4, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56248,45 +56634,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21122] = 11, + [21334] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1935), 2, + ACTIONS(1728), 1, + anon_sym_CARET, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 6, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56296,119 +56690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21182] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - ACTIONS(1995), 1, - anon_sym_RPAREN, - STATE(667), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1342), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(617), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [21272] = 20, + anon_sym_GT_GT_EQ, + [21410] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(282), 1, - anon_sym_RBRACE, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1726), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1728), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1931), 1, anon_sym_AMP_AMP, - ACTIONS(1744), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1746), 1, + ACTIONS(1742), 2, anon_sym_EQ, - ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, - anon_sym_SEMI, - ACTIONS(1724), 2, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1730), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1736), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1722), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1750), 10, + ACTIONS(1740), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56419,24 +56746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21350] = 19, + [21482] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -56448,19 +56775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1997), 2, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2005), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56476,24 +56803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21426] = 19, + [21558] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(280), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -56501,23 +56830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(1943), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56533,44 +56861,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21502] = 10, + [21636] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1935), 2, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, + anon_sym_AMP, + ACTIONS(1925), 1, + anon_sym_CARET, + ACTIONS(1929), 1, + anon_sym_PIPE, + ACTIONS(1931), 1, + anon_sym_AMP_AMP, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(292), 2, + anon_sym_EQ, + anon_sym_BANG, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1951), 2, + ACTIONS(1927), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1532), 7, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(290), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56581,116 +56916,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21560] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - ACTIONS(2001), 1, - anon_sym_RPAREN, - STATE(667), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1342), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(617), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [21650] = 18, + [21708] = 17, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, - anon_sym_BANG, - ACTIONS(1873), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1923), 1, anon_sym_AMP, - ACTIONS(1875), 1, + ACTIONS(1925), 1, anon_sym_CARET, - ACTIONS(1879), 1, + ACTIONS(1929), 1, anon_sym_PIPE, - ACTIONS(1883), 1, + ACTIONS(1931), 1, + anon_sym_AMP_AMP, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1905), 1, + ACTIONS(1766), 2, anon_sym_EQ, - ACTIONS(1871), 2, + anon_sym_BANG, + ACTIONS(1919), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1877), 2, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 2, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1869), 3, + ACTIONS(1917), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2003), 3, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(1885), 4, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1907), 10, + ACTIONS(1764), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56701,42 +56971,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21724] = 8, + [21780] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1933), 3, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1532), 11, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1923), 1, anon_sym_AMP, + ACTIONS(1925), 1, anon_sym_CARET, + ACTIONS(1929), 1, + anon_sym_PIPE, + ACTIONS(1931), 1, + anon_sym_AMP_AMP, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2007), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_switch_block, + ACTIONS(1919), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1927), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + ACTIONS(1937), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1530), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1917), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1935), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1939), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56747,115 +57029,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21778] = 26, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - ACTIONS(2005), 1, - anon_sym_RPAREN, - STATE(667), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1342), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(617), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [21868] = 17, + [21858] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, anon_sym_AMP, - ACTIONS(1939), 1, + ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1943), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1945), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, - ACTIONS(1947), 1, + ACTIONS(1744), 1, anon_sym_PIPE_PIPE, - ACTIONS(1766), 2, + ACTIONS(1746), 1, anon_sym_EQ, + ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1935), 2, + ACTIONS(1943), 1, + anon_sym_SEMI, + ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1951), 2, + ACTIONS(1730), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1933), 3, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1949), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1764), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1750), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56866,24 +57087,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21940] = 19, + [21936] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -56891,22 +57112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2007), 1, + ACTIONS(1943), 1, anon_sym_SEMI, + ACTIONS(2009), 1, + anon_sym_RBRACE, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56922,24 +57145,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22015] = 19, + [22014] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -56947,22 +57172,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2009), 1, - anon_sym_RPAREN, + ACTIONS(1943), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -56978,24 +57203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22090] = 19, + [22092] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57009,16 +57234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57034,24 +57259,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22165] = 19, + [22167] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57060,21 +57285,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1748), 1, anon_sym_BANG, ACTIONS(2013), 1, - anon_sym_SEMI, + anon_sym_RBRACK, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57090,24 +57315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22240] = 19, + [22242] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57116,21 +57341,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1748), 1, anon_sym_BANG, ACTIONS(2015), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57146,46 +57371,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22315] = 18, + [22317] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, ACTIONS(1746), 1, anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(2017), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1957), 2, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57201,86 +57427,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22388] = 25, + [22392] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1298), 1, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, + anon_sym_AMP, + ACTIONS(1728), 1, + anon_sym_CARET, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(1724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1730), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1973), 2, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + ACTIONS(1722), 3, + anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - STATE(667), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1342), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(617), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [22475] = 19, + anon_sym_PERCENT, + ACTIONS(1738), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1750), 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, + [22465] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57288,22 +57507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2017), 1, + ACTIONS(2019), 1, anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57319,86 +57538,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22550] = 25, + [22540] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1298), 1, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, + ACTIONS(1726), 1, + anon_sym_AMP, + ACTIONS(1728), 1, + anon_sym_CARET, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, + ACTIONS(1744), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1746), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_BANG, + ACTIONS(2021), 1, + anon_sym_RBRACE, + ACTIONS(1724), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1730), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 3, + anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - STATE(648), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1191), 1, - sym__option_type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(704), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [22637] = 19, + anon_sym_PERCENT, + ACTIONS(1738), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1750), 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, + [22615] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57406,22 +57619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2019), 1, - anon_sym_RBRACK, + ACTIONS(2023), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57437,24 +57650,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22712] = 19, + [22690] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57462,22 +57675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1931), 1, + ACTIONS(2025), 1, anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57493,24 +57706,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22787] = 19, + [22765] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57518,22 +57731,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2021), 1, - anon_sym_RPAREN, + ACTIONS(1943), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57549,24 +57762,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22862] = 19, + [22840] = 25, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + STATE(674), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1302), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(705), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [22927] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + STATE(689), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1156), 1, + sym__option_type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(705), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [23014] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57574,22 +57911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2023), 1, + ACTIONS(2027), 1, anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57605,24 +57942,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22937] = 19, + [23089] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57630,22 +57967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2025), 1, - anon_sym_RBRACK, + ACTIONS(2029), 1, + anon_sym_RPAREN, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57661,24 +57998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23012] = 19, + [23164] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57686,22 +58023,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2027), 1, - anon_sym_RBRACE, + ACTIONS(2031), 1, + anon_sym_RBRACK, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57717,24 +58054,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23087] = 19, + [23239] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57742,22 +58079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2029), 1, - anon_sym_SEMI, + ACTIONS(2033), 1, + anon_sym_RPAREN, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57773,24 +58110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23162] = 19, + [23314] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57798,22 +58135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2031), 1, - anon_sym_RPAREN, + ACTIONS(2035), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57829,47 +58166,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23237] = 19, + [23389] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, ACTIONS(1746), 1, anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2033), 1, - anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1965), 2, + anon_sym_RPAREN, + anon_sym_AMP_AMP, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57885,24 +58221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23312] = 19, + [23462] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -57910,22 +58246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2035), 1, - anon_sym_COMMA, + ACTIONS(2037), 1, + anon_sym_RBRACK, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -57941,109 +58277,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23387] = 25, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_pub, - ACTIONS(1899), 1, - sym_crate, - STATE(676), 1, - sym_visibility_modifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1317), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 2, - sym_self, - sym_super, - STATE(704), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [23474] = 19, + [23537] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, ACTIONS(1746), 1, anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1989), 1, - anon_sym_RPAREN, - ACTIONS(2037), 1, - anon_sym_AMP_AMP, + ACTIONS(2039), 1, + anon_sym_COMMA, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58059,46 +58333,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23549] = 18, + [23612] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, + ACTIONS(1736), 1, + anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, ACTIONS(1746), 1, anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, + ACTIONS(2041), 1, + anon_sym_RPAREN, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2003), 2, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58114,24 +58389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23622] = 19, + [23687] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -58139,22 +58414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2039), 1, - anon_sym_SEMI, + ACTIONS(1967), 1, + anon_sym_COMMA, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58170,47 +58445,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23697] = 19, + [23762] = 25, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + ACTIONS(1883), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_pub, + ACTIONS(1889), 1, + sym_crate, + STATE(677), 1, + sym_visibility_modifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1307), 1, + sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 2, + sym_self, + sym_super, + STATE(612), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [23849] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1550), 1, + anon_sym_DOT, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, ACTIONS(1746), 1, anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2041), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, + ACTIONS(2043), 1, + anon_sym_AMP_AMP, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58226,24 +58563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23772] = 19, + [23924] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -58251,22 +58588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(1921), 1, - anon_sym_COMMA, + ACTIONS(2045), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58282,24 +58619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23847] = 19, + [23999] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1534), 1, + ACTIONS(1550), 1, anon_sym_DOT, - ACTIONS(1536), 1, - anon_sym_as, - ACTIONS(1538), 1, + ACTIONS(1552), 1, anon_sym_LBRACK, + ACTIONS(1636), 1, + anon_sym_as, ACTIONS(1726), 1, anon_sym_AMP, ACTIONS(1728), 1, anon_sym_CARET, - ACTIONS(1732), 1, + ACTIONS(1734), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1736), 1, anon_sym_AMP_AMP, ACTIONS(1744), 1, anon_sym_PIPE_PIPE, @@ -58307,22 +58644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1748), 1, anon_sym_BANG, - ACTIONS(2043), 1, - anon_sym_RBRACK, + ACTIONS(2047), 1, + anon_sym_SEMI, ACTIONS(1724), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1730), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1736), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1732), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1722), 3, anon_sym_SLASH, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1734), 4, + ACTIONS(1738), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -58338,7 +58675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23922] = 24, + [24074] = 24, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58357,27 +58694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(317), 1, + STATE(324), 1, sym_block, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(858), 1, + STATE(855), 1, sym__option_type, - STATE(861), 1, + STATE(865), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1467), 1, + STATE(1460), 1, + sym_bracketed_type, + STATE(1471), 1, sym_label, ACTIONS(1304), 2, anon_sym_default, @@ -58386,7 +58723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58398,50 +58735,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24006] = 18, + [24158] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(2045), 1, - sym_identifier, ACTIONS(2049), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(2053), 1, + anon_sym_DOT, + ACTIONS(2057), 1, sym_metavariable, - STATE(866), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(924), 1, + STATE(931), 1, sym__literal_pattern, - STATE(1398), 1, + STATE(1402), 1, sym_bracketed_type, - STATE(1410), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(2051), 2, + ACTIONS(2055), 2, anon_sym_default, anon_sym_union, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(2047), 9, + ACTIONS(2051), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -58451,12 +58788,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24077] = 4, + [24229] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1101), 13, + ACTIONS(1049), 13, sym_raw_string_literal, sym_float_literal, anon_sym_DASH, @@ -58470,7 +58807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_char_literal, sym_metavariable, - ACTIONS(1103), 19, + ACTIONS(1051), 19, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -58490,50 +58827,50 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24120] = 18, + [24272] = 18, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_DASH, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_DQUOTE, ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_DOT, - ACTIONS(2055), 1, + ACTIONS(2059), 1, sym_identifier, - ACTIONS(2061), 1, + ACTIONS(2065), 1, sym_metavariable, STATE(870), 1, sym_scoped_identifier, - STATE(928), 1, + STATE(925), 1, sym__literal_pattern, - STATE(1398), 1, + STATE(1402), 1, sym_bracketed_type, - STATE(1410), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - ACTIONS(1213), 2, + ACTIONS(1215), 2, anon_sym_true, anon_sym_false, - ACTIONS(2059), 2, + ACTIONS(2063), 2, anon_sym_default, anon_sym_union, - ACTIONS(1207), 4, + ACTIONS(1209), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(864), 4, + STATE(868), 4, sym_negative_literal, sym_string_literal, sym_string_template, sym_boolean_literal, - ACTIONS(2057), 9, + ACTIONS(2061), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -58543,7 +58880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24191] = 21, + [24343] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58560,78 +58897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + ACTIONS(2067), 1, + anon_sym_type, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1290), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1350), 1, - sym_union_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 3, - sym_self, - sym_super, - sym_crate, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [24266] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(2063), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_STAR, - ACTIONS(2067), 1, - anon_sym_LT, - ACTIONS(2069), 1, - anon_sym_fn, - ACTIONS(2071), 1, - anon_sym_for, - STATE(675), 1, - sym_type_parameters, - STATE(837), 1, - sym_generic_type, - STATE(974), 1, - sym_scoped_type_identifier, - STATE(1213), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, + STATE(1436), 1, + sym__option_type, + STATE(1460), 1, sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58639,7 +58922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58651,7 +58934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24341] = 21, + [24418] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58668,78 +58951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1332), 1, + STATE(1320), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1371), 1, - sym_qualified_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(1304), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1310), 3, - sym_self, - sym_super, - sym_crate, - STATE(860), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(1294), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [24416] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(2063), 1, - sym_identifier, - ACTIONS(2065), 1, - anon_sym_STAR, - ACTIONS(2067), 1, - anon_sym_LT, - ACTIONS(2069), 1, - anon_sym_fn, - ACTIONS(2073), 1, - anon_sym_for, - STATE(685), 1, - sym_type_parameters, - STATE(837), 1, - sym_generic_type, - STATE(974), 1, - sym_scoped_type_identifier, - STATE(1116), 1, - sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1368), 1, + STATE(1394), 1, + sym_union_type, + STATE(1460), 1, sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58747,7 +58976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58759,7 +58988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24491] = 21, + [24493] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58776,24 +59005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1323), 1, + STATE(1263), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1422), 1, + STATE(1381), 1, sym_union_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58801,7 +59030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58813,7 +59042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24566] = 21, + [24568] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58824,30 +59053,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, ACTIONS(1298), 1, anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(2075), 1, - anon_sym_DOT, - ACTIONS(2077), 1, - anon_sym_DOT_DOT, - STATE(806), 1, + ACTIONS(2069), 1, + anon_sym_type, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1051), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1373), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58855,7 +59084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58867,7 +59096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24641] = 21, + [24643] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58884,24 +59113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1117), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1371), 1, - sym_qualified_type, - STATE(1383), 1, + STATE(1322), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1400), 1, + sym_union_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58909,7 +59138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58921,41 +59150,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24716] = 21, + [24718] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(2071), 1, sym_identifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2075), 1, + anon_sym_LT, + ACTIONS(2077), 1, + anon_sym_fn, + ACTIONS(2079), 1, + anon_sym_for, + STATE(692), 1, + sym_type_parameters, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(988), 1, + sym_scoped_type_identifier, + STATE(1217), 1, sym__type, - STATE(1284), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1431), 1, - sym_union_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -58963,7 +59192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -58975,7 +59204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24791] = 21, + [24793] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -58992,24 +59221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1306), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1304), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1390), 1, + STATE(1415), 1, sym_union_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59017,7 +59246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59029,7 +59258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24866] = 21, + [24868] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59046,24 +59275,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(2079), 1, - anon_sym_type, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - STATE(1401), 1, + STATE(1294), 1, sym__option_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1442), 1, + sym_union_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59071,7 +59300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59083,41 +59312,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [24941] = 21, + [24943] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(2071), 1, sym_identifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2075), 1, + anon_sym_LT, + ACTIONS(2077), 1, + anon_sym_fn, + ACTIONS(2081), 1, + anon_sym_for, + STATE(680), 1, + sym_type_parameters, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(988), 1, + sym_scoped_type_identifier, + STATE(1119), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1318), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1381), 1, - sym_union_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59125,7 +59354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59137,7 +59366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25016] = 21, + [25018] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59154,24 +59383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(2081), 1, - anon_sym_type, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1364), 1, + STATE(1256), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1354), 1, + sym_qualified_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59179,7 +59408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59191,7 +59420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25091] = 21, + [25093] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59208,24 +59437,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1177), 1, + STATE(1135), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1371), 1, + STATE(1354), 1, sym_qualified_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59233,7 +59462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59245,7 +59474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25166] = 21, + [25168] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59256,30 +59485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, + ACTIONS(406), 1, + anon_sym_type, ACTIONS(1296), 1, anon_sym_DOT, ACTIONS(1298), 1, anon_sym_STAR, - ACTIONS(2083), 1, - sym_identifier, - ACTIONS(2085), 1, + ACTIONS(1312), 1, sym_metavariable, - STATE(806), 1, + ACTIONS(1879), 1, + sym_identifier, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1177), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1371), 1, - sym_qualified_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1451), 1, + sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59287,7 +59516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59299,7 +59528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25241] = 21, + [25243] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59310,30 +59539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(404), 1, anon_sym_fn, - ACTIONS(406), 1, - anon_sym_type, - ACTIONS(1296), 1, - anon_sym_DOT, ACTIONS(1298), 1, anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + ACTIONS(2083), 1, + anon_sym_DOT, + ACTIONS(2085), 1, + anon_sym_DOT_DOT, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1105), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1442), 1, - sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59341,7 +59570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59353,7 +59582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25316] = 20, + [25318] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59368,24 +59597,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1298), 1, anon_sym_STAR, - ACTIONS(1312), 1, - sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(2087), 1, sym_identifier, - STATE(806), 1, + ACTIONS(2089), 1, + sym_metavariable, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(966), 1, + STATE(1135), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1354), 1, + sym_qualified_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59393,7 +59624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59405,59 +59636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25388] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2087), 1, - sym_identifier, - ACTIONS(2091), 1, - anon_sym_DOT, - ACTIONS(2093), 1, - anon_sym_STAR, - ACTIONS(2095), 1, - anon_sym_LT, - ACTIONS(2099), 1, - anon_sym_fn, - ACTIONS(2101), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - sym_metavariable, - STATE(367), 1, - sym_scoped_type_identifier, - STATE(402), 1, - sym__option_type, - STATE(407), 1, - sym_generic_type, - STATE(415), 1, - sym__type, - STATE(1299), 1, - sym_scoped_identifier, - STATE(1451), 1, - sym_bracketed_type, - STATE(1452), 1, - sym_generic_type_with_turbofish, - ACTIONS(2097), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2103), 3, - sym_self, - sym_super, - sym_crate, - STATE(409), 4, - sym_array_type, - sym_map_type, - sym_function_type, - sym_pointer_type, - ACTIONS(2089), 6, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - [25460] = 20, + [25393] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59474,22 +59653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, - sym_generic_type_with_turbofish, - STATE(1447), 1, + STATE(1309), 1, sym__option_type, + STATE(1354), 1, + sym_qualified_type, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59497,7 +59678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59509,59 +59690,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25532] = 20, + [25468] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, + ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2095), 1, anon_sym_DOT, - ACTIONS(1298), 1, + ACTIONS(2097), 1, anon_sym_STAR, - ACTIONS(1312), 1, + ACTIONS(2099), 1, + anon_sym_LT, + ACTIONS(2103), 1, + anon_sym_fn, + ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2109), 1, sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - STATE(806), 1, + STATE(369), 1, sym_scoped_type_identifier, - STATE(837), 1, - sym_generic_type, - STATE(844), 1, + STATE(396), 1, sym__type, - STATE(1311), 1, + STATE(398), 1, + sym_generic_type, + STATE(441), 1, sym__option_type, - STATE(1312), 1, + STATE(1311), 1, sym_scoped_identifier, - STATE(1368), 1, + STATE(1455), 1, sym_bracketed_type, - STATE(1383), 1, + STATE(1456), 1, sym_generic_type_with_turbofish, - ACTIONS(1304), 2, + ACTIONS(2101), 2, anon_sym_default, anon_sym_union, - ACTIONS(1310), 3, + ACTIONS(2107), 3, sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(397), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(1294), 6, + ACTIONS(2093), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [25604] = 20, + [25540] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59578,22 +59759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(858), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1319), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59601,7 +59782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59613,7 +59794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25676] = 20, + [25612] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59630,22 +59811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1168), 1, + STATE(972), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59653,7 +59834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59665,7 +59846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25748] = 20, + [25684] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59682,22 +59863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1191), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1396), 1, + sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59705,7 +59886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59717,7 +59898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25820] = 20, + [25756] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59734,22 +59915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(967), 1, + STATE(1173), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59757,7 +59938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59769,7 +59950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25892] = 20, + [25828] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59786,22 +59967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1293), 1, + STATE(1267), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -59809,7 +59990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -59821,163 +60002,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [25964] = 20, + [25900] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2087), 1, - sym_identifier, - ACTIONS(2091), 1, - anon_sym_DOT, - ACTIONS(2093), 1, - anon_sym_STAR, - ACTIONS(2095), 1, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(2099), 1, - anon_sym_fn, - ACTIONS(2101), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, sym_metavariable, - STATE(367), 1, + ACTIONS(1879), 1, + sym_identifier, + STATE(809), 1, sym_scoped_type_identifier, - STATE(387), 1, - sym__option_type, - STATE(407), 1, + STATE(833), 1, sym_generic_type, - STATE(415), 1, + STATE(848), 1, sym__type, - STATE(1299), 1, + STATE(1131), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1451), 1, - sym_bracketed_type, - STATE(1452), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(2097), 2, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, anon_sym_default, anon_sym_union, - ACTIONS(2103), 3, + ACTIONS(1310), 3, sym_self, sym_super, sym_crate, - STATE(409), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(2089), 6, + ACTIONS(1294), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26036] = 20, + [25972] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2087), 1, - sym_identifier, - ACTIONS(2091), 1, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(2093), 1, + ACTIONS(1298), 1, anon_sym_STAR, - ACTIONS(2095), 1, + ACTIONS(1312), 1, + sym_metavariable, + ACTIONS(1879), 1, + sym_identifier, + STATE(809), 1, + sym_scoped_type_identifier, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, + sym__type, + STATE(1272), 1, + sym__option_type, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, + sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1310), 3, + sym_self, + sym_super, + sym_crate, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [26044] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(2099), 1, - anon_sym_fn, - ACTIONS(2101), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, sym_metavariable, - STATE(367), 1, + ACTIONS(1879), 1, + sym_identifier, + STATE(809), 1, sym_scoped_type_identifier, - STATE(389), 1, - sym__option_type, - STATE(407), 1, + STATE(833), 1, sym_generic_type, - STATE(415), 1, + STATE(848), 1, sym__type, - STATE(1299), 1, + STATE(1073), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1451), 1, - sym_bracketed_type, - STATE(1452), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(2097), 2, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, anon_sym_default, anon_sym_union, - ACTIONS(2103), 3, + ACTIONS(1310), 3, sym_self, sym_super, sym_crate, - STATE(409), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(2089), 6, + ACTIONS(1294), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26108] = 20, + [26116] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2087), 1, - sym_identifier, ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2095), 1, anon_sym_DOT, - ACTIONS(2093), 1, + ACTIONS(2097), 1, anon_sym_STAR, - ACTIONS(2095), 1, - anon_sym_LT, ACTIONS(2099), 1, + anon_sym_LT, + ACTIONS(2103), 1, anon_sym_fn, - ACTIONS(2101), 1, - anon_sym_LBRACK, ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2109), 1, sym_metavariable, - STATE(367), 1, + STATE(369), 1, sym_scoped_type_identifier, - STATE(407), 1, + STATE(398), 1, sym_generic_type, - STATE(410), 1, - sym__type, - STATE(445), 1, + STATE(406), 1, sym__option_type, - STATE(1299), 1, + STATE(416), 1, + sym__type, + STATE(1311), 1, sym_scoped_identifier, - STATE(1451), 1, + STATE(1455), 1, sym_bracketed_type, - STATE(1452), 1, + STATE(1456), 1, sym_generic_type_with_turbofish, - ACTIONS(2097), 2, + ACTIONS(2101), 2, anon_sym_default, anon_sym_union, - ACTIONS(2103), 3, + ACTIONS(2107), 3, sym_self, sym_super, sym_crate, - STATE(409), 4, + STATE(397), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(2089), 6, + ACTIONS(2093), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26180] = 20, + [26188] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -59994,22 +60227,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1038), 1, + STATE(1156), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60017,7 +60250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60029,7 +60262,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26252] = 20, + [26260] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_STAR, + ACTIONS(2099), 1, + anon_sym_LT, + ACTIONS(2103), 1, + anon_sym_fn, + ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2109), 1, + sym_metavariable, + STATE(369), 1, + sym_scoped_type_identifier, + STATE(384), 1, + sym__option_type, + STATE(398), 1, + sym_generic_type, + STATE(416), 1, + sym__type, + STATE(1311), 1, + sym_scoped_identifier, + STATE(1455), 1, + sym_bracketed_type, + STATE(1456), 1, + sym_generic_type_with_turbofish, + ACTIONS(2101), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2107), 3, + sym_self, + sym_super, + sym_crate, + STATE(397), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(2093), 6, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + [26332] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60046,22 +60331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(857), 1, - sym__option_type, - STATE(861), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1112), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60069,7 +60354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60081,59 +60366,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26324] = 20, + [26404] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2087), 1, - sym_identifier, - ACTIONS(2091), 1, - anon_sym_DOT, - ACTIONS(2093), 1, - anon_sym_STAR, - ACTIONS(2095), 1, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(2099), 1, - anon_sym_fn, - ACTIONS(2101), 1, + ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(404), 1, + anon_sym_fn, + ACTIONS(1296), 1, + anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, + ACTIONS(1312), 1, sym_metavariable, - STATE(367), 1, + ACTIONS(1879), 1, + sym_identifier, + STATE(809), 1, sym_scoped_type_identifier, - STATE(391), 1, - sym__option_type, - STATE(407), 1, + STATE(833), 1, sym_generic_type, - STATE(415), 1, + STATE(848), 1, sym__type, - STATE(1299), 1, + STATE(864), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1451), 1, - sym_bracketed_type, - STATE(1452), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(2097), 2, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, anon_sym_default, anon_sym_union, - ACTIONS(2103), 3, + ACTIONS(1310), 3, sym_self, sym_super, sym_crate, - STATE(409), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(2089), 6, + ACTIONS(1294), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26396] = 20, + [26476] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60150,22 +60435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1024), 1, + STATE(971), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60173,7 +60458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60185,7 +60470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26468] = 20, + [26548] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60202,22 +60487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1027), 1, + STATE(857), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60225,7 +60510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60237,7 +60522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26540] = 20, + [26620] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60254,22 +60539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1343), 1, + STATE(853), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60277,7 +60562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60289,7 +60574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26612] = 20, + [26692] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60306,22 +60591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(968), 1, + STATE(1136), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60329,7 +60614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60341,59 +60626,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26684] = 20, + [26764] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, + ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2095), 1, anon_sym_DOT, - ACTIONS(1298), 1, + ACTIONS(2097), 1, anon_sym_STAR, - ACTIONS(1312), 1, + ACTIONS(2099), 1, + anon_sym_LT, + ACTIONS(2103), 1, + anon_sym_fn, + ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2109), 1, sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - STATE(806), 1, + STATE(369), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(398), 1, sym_generic_type, - STATE(844), 1, - sym__type, - STATE(1203), 1, + STATE(408), 1, sym__option_type, - STATE(1312), 1, + STATE(416), 1, + sym__type, + STATE(1311), 1, sym_scoped_identifier, - STATE(1368), 1, + STATE(1455), 1, sym_bracketed_type, - STATE(1383), 1, + STATE(1456), 1, sym_generic_type_with_turbofish, - ACTIONS(1304), 2, + ACTIONS(2101), 2, anon_sym_default, anon_sym_union, - ACTIONS(1310), 3, + ACTIONS(2107), 3, sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(397), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(1294), 6, + ACTIONS(2093), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26756] = 20, + [26836] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60410,22 +60695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(967), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1388), 1, - sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60433,7 +60718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60445,7 +60730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26828] = 20, + [26908] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60462,22 +60747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(959), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1439), 1, + sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60485,7 +60770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60497,59 +60782,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [26900] = 20, + [26980] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(77), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, - ACTIONS(1296), 1, + ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2095), 1, anon_sym_DOT, - ACTIONS(1298), 1, + ACTIONS(2097), 1, anon_sym_STAR, - ACTIONS(1312), 1, + ACTIONS(2099), 1, + anon_sym_LT, + ACTIONS(2103), 1, + anon_sym_fn, + ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2109), 1, sym_metavariable, - ACTIONS(1889), 1, - sym_identifier, - STATE(806), 1, + STATE(369), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(398), 1, sym_generic_type, - STATE(844), 1, - sym__type, - STATE(973), 1, + STATE(409), 1, sym__option_type, - STATE(1312), 1, + STATE(416), 1, + sym__type, + STATE(1311), 1, sym_scoped_identifier, - STATE(1368), 1, + STATE(1455), 1, sym_bracketed_type, - STATE(1383), 1, + STATE(1456), 1, sym_generic_type_with_turbofish, - ACTIONS(1304), 2, + ACTIONS(2101), 2, anon_sym_default, anon_sym_union, - ACTIONS(1310), 3, + ACTIONS(2107), 3, sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(397), 4, sym_array_type, sym_map_type, sym_function_type, sym_pointer_type, - ACTIONS(1294), 6, + ACTIONS(2093), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - [26972] = 20, + [27052] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60566,22 +60851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1315), 1, + STATE(1066), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60589,7 +60874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60601,7 +60886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27044] = 20, + [27124] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60618,22 +60903,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1317), 1, + STATE(978), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60641,7 +60926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60653,7 +60938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27116] = 20, + [27196] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60670,22 +60955,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(864), 1, + sym__option_type, + STATE(865), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1340), 1, - sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60693,7 +60978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60705,7 +60990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27188] = 20, + [27268] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60722,22 +61007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, - sym__type, - STATE(983), 1, + STATE(853), 1, sym__option_type, - STATE(1312), 1, + STATE(865), 1, + sym__type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60745,7 +61030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60757,7 +61042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27260] = 20, + [27340] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60774,22 +61059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(965), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, - sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60797,7 +61082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60809,7 +61094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27332] = 20, + [27412] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60826,22 +61111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1274), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1300), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60849,7 +61134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60861,7 +61146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27404] = 20, + [27484] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60878,22 +61163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(859), 1, - sym__option_type, - STATE(861), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(970), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60901,7 +61186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60913,7 +61198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27476] = 20, + [27556] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60930,22 +61215,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(855), 1, + sym__option_type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1480), 1, - sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -60953,7 +61238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -60965,7 +61250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27548] = 20, + [27628] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -60982,22 +61267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(984), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1302), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61005,7 +61290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61017,7 +61302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27620] = 20, + [27700] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61026,30 +61311,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(77), 1, anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, ACTIONS(1296), 1, anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(2065), 1, - anon_sym_STAR, - ACTIONS(2069), 1, - anon_sym_fn, - ACTIONS(2107), 1, - anon_sym_for, - STATE(837), 1, - sym_generic_type, - STATE(974), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(1246), 1, + STATE(833), 1, + sym_generic_type, + STATE(855), 1, + sym__option_type, + STATE(865), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61057,7 +61342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61069,7 +61354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27692] = 20, + [27772] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61086,22 +61371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, - sym_scoped_identifier, - STATE(1316), 1, + STATE(982), 1, sym__option_type, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1291), 1, + sym_scoped_identifier, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61109,7 +61394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61121,7 +61406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27764] = 20, + [27844] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61130,30 +61415,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(77), 1, anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_fn, ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1298), 1, - anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(2071), 1, sym_identifier, - STATE(806), 1, - sym_scoped_type_identifier, - STATE(837), 1, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2077), 1, + anon_sym_fn, + ACTIONS(2111), 1, + anon_sym_for, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(988), 1, + sym_scoped_type_identifier, + STATE(1246), 1, sym__type, - STATE(1298), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61161,7 +61446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61173,7 +61458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27836] = 20, + [27916] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61190,22 +61475,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1263), 1, + STATE(985), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61213,7 +61498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61225,7 +61510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27908] = 20, + [27988] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61242,22 +61527,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(972), 1, + STATE(1290), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61265,7 +61550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61277,7 +61562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [27980] = 20, + [28060] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61294,22 +61579,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1286), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1328), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61317,7 +61602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61329,7 +61614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28052] = 20, + [28132] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61346,22 +61631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(858), 1, - sym__option_type, - STATE(861), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1331), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61369,7 +61654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61381,7 +61666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28124] = 20, + [28204] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61398,22 +61683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(846), 1, - sym__option_type, - STATE(861), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1427), 1, + sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61421,7 +61706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61433,7 +61718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28196] = 20, + [28276] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61450,22 +61735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, - sym__type, STATE(857), 1, sym__option_type, - STATE(1312), 1, + STATE(865), 1, + sym__type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61473,7 +61758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61485,7 +61770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28268] = 20, + [28348] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61502,22 +61787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(859), 1, + STATE(1271), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61525,7 +61810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61537,7 +61822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28340] = 20, + [28420] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61546,30 +61831,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(77), 1, anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_fn, ACTIONS(1296), 1, anon_sym_DOT, + ACTIONS(1298), 1, + anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(1879), 1, sym_identifier, - ACTIONS(2065), 1, - anon_sym_STAR, - ACTIONS(2069), 1, - anon_sym_fn, - ACTIONS(2109), 1, - anon_sym_for, - STATE(837), 1, - sym_generic_type, - STATE(974), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(1231), 1, + STATE(833), 1, + sym_generic_type, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1318), 1, + sym__option_type, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61577,7 +61862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61589,7 +61874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28412] = 20, + [28492] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61606,22 +61891,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1277), 1, + STATE(1197), 1, sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61629,7 +61914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61641,7 +61926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28484] = 20, + [28564] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61658,22 +61943,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - STATE(1444), 1, + STATE(1399), 1, sym__option_type, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61681,7 +61966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61693,7 +61978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28556] = 20, + [28636] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61710,22 +61995,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(1889), 1, + ACTIONS(1879), 1, sym_identifier, - STATE(806), 1, + STATE(809), 1, sym_scoped_type_identifier, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(844), 1, + STATE(848), 1, sym__type, - STATE(846), 1, - sym__option_type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, + STATE(1472), 1, + sym__option_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61733,7 +62018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61745,7 +62030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28628] = 19, + [28708] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61758,24 +62043,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_fn, - STATE(837), 1, + ACTIONS(2113), 1, + anon_sym_for, + STATE(833), 1, sym_generic_type, - STATE(974), 1, + STATE(988), 1, sym_scoped_type_identifier, - STATE(1241), 1, + STATE(1250), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61783,7 +62070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61795,7 +62082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28697] = 19, + [28780] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61808,24 +62095,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_fn, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(974), 1, + STATE(988), 1, sym_scoped_type_identifier, - STATE(1230), 1, + STATE(1249), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61833,7 +62120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61845,7 +62132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28766] = 19, + [28849] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61858,24 +62145,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_fn, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(974), 1, + STATE(988), 1, sym_scoped_type_identifier, - STATE(1142), 1, + STATE(1239), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61883,7 +62170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61895,7 +62182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28835] = 19, + [28918] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -61908,24 +62195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1312), 1, sym_metavariable, - ACTIONS(2063), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2065), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2069), 1, + ACTIONS(2077), 1, anon_sym_fn, - STATE(837), 1, + STATE(833), 1, sym_generic_type, - STATE(974), 1, + STATE(988), 1, sym_scoped_type_identifier, - STATE(1245), 1, + STATE(1247), 1, sym__type, - STATE(1312), 1, + STATE(1291), 1, sym_scoped_identifier, - STATE(1368), 1, - sym_bracketed_type, - STATE(1383), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, + STATE(1460), 1, + sym_bracketed_type, ACTIONS(1304), 2, anon_sym_default, anon_sym_union, @@ -61933,7 +62220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(860), 4, + STATE(859), 4, sym_array_type, sym_map_type, sym_function_type, @@ -61945,131 +62232,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_string, anon_sym_channel, - [28904] = 16, + [28987] = 19, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(2111), 1, - sym_identifier, - ACTIONS(2115), 1, - anon_sym_COMMA, - ACTIONS(2117), 1, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2125), 1, - anon_sym_RBRACE, - ACTIONS(2127), 1, + ACTIONS(1312), 1, sym_metavariable, - STATE(981), 1, + ACTIONS(2071), 1, + sym_identifier, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2077), 1, + anon_sym_fn, + STATE(833), 1, + sym_generic_type, + STATE(988), 1, + sym_scoped_type_identifier, + STATE(1129), 1, + sym__type, + STATE(1291), 1, sym_scoped_identifier, - STATE(1406), 1, - sym_bracketed_type, - STATE(1454), 1, + STATE(1378), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + STATE(1460), 1, + sym_bracketed_type, + ACTIONS(1304), 2, anon_sym_default, anon_sym_union, - STATE(1240), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2113), 9, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, + ACTIONS(1310), 3, sym_self, sym_super, sym_crate, - [28966] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1189), 1, - anon_sym_LT, - ACTIONS(2111), 1, - sym_identifier, - ACTIONS(2117), 1, - anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - sym_metavariable, - ACTIONS(2129), 1, - anon_sym_RBRACE, - STATE(981), 1, - sym_scoped_identifier, - STATE(1406), 1, - sym_bracketed_type, - STATE(1454), 1, - sym_generic_type_with_turbofish, - ACTIONS(2121), 2, - anon_sym_default, - anon_sym_union, - STATE(1257), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2113), 9, + STATE(859), 4, + sym_array_type, + sym_map_type, + sym_function_type, + sym_pointer_type, + ACTIONS(1294), 6, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - sym_self, - sym_super, - sym_crate, - [29025] = 15, + [29056] = 16, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, - anon_sym_DOT, ACTIONS(2119), 1, - anon_sym_STAR, + anon_sym_COMMA, + ACTIONS(2121), 1, + anon_sym_DOT, ACTIONS(2123), 1, - anon_sym_LBRACE, + anon_sym_STAR, ACTIONS(2127), 1, - sym_metavariable, - ACTIONS(2131), 1, + anon_sym_LBRACE, + ACTIONS(2129), 1, anon_sym_RBRACE, - STATE(981), 1, + ACTIONS(2131), 1, + sym_metavariable, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1257), 5, + STATE(1207), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62079,39 +62328,41 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29084] = 14, + [29118] = 15, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(2121), 1, anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, ACTIONS(2123), 1, - anon_sym_LBRACE, + anon_sym_STAR, ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, sym_metavariable, - STATE(981), 1, + ACTIONS(2133), 1, + anon_sym_RBRACE, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1491), 5, + STATE(1288), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62121,39 +62372,41 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29140] = 14, + [29177] = 15, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(2121), 1, anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, ACTIONS(2123), 1, - anon_sym_LBRACE, + anon_sym_STAR, ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, sym_metavariable, - STATE(981), 1, + ACTIONS(2135), 1, + anon_sym_RBRACE, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1359), 5, + STATE(1288), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62163,39 +62416,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29196] = 14, + [29236] = 14, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(2121), 1, anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, ACTIONS(2123), 1, - anon_sym_LBRACE, + anon_sym_STAR, ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, sym_metavariable, - STATE(981), 1, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1382), 5, + STATE(1434), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62205,39 +62458,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29252] = 14, + [29292] = 14, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(2121), 1, anon_sym_DOT, - ACTIONS(2119), 1, - anon_sym_STAR, ACTIONS(2123), 1, - anon_sym_LBRACE, + anon_sym_STAR, ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, sym_metavariable, - STATE(981), 1, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1257), 5, + STATE(1288), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62247,39 +62500,123 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29308] = 14, + [29348] = 14, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(2121), 1, anon_sym_DOT, - ACTIONS(2119), 1, + ACTIONS(2123), 1, anon_sym_STAR, + ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, + sym_metavariable, + STATE(963), 1, + sym_scoped_identifier, + STATE(1357), 1, + sym_bracketed_type, + STATE(1405), 1, + sym_generic_type_with_turbofish, + ACTIONS(2125), 2, + anon_sym_default, + anon_sym_union, + STATE(1412), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2117), 9, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + sym_self, + sym_super, + sym_crate, + [29404] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(2115), 1, + sym_identifier, + ACTIONS(2121), 1, + anon_sym_DOT, ACTIONS(2123), 1, + anon_sym_STAR, + ACTIONS(2127), 1, anon_sym_LBRACE, + ACTIONS(2131), 1, + sym_metavariable, + STATE(963), 1, + sym_scoped_identifier, + STATE(1357), 1, + sym_bracketed_type, + STATE(1405), 1, + sym_generic_type_with_turbofish, + ACTIONS(2125), 2, + anon_sym_default, + anon_sym_union, + STATE(1387), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2117), 9, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + sym_self, + sym_super, + sym_crate, + [29460] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(2115), 1, + sym_identifier, + ACTIONS(2121), 1, + anon_sym_DOT, + ACTIONS(2123), 1, + anon_sym_STAR, ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2131), 1, sym_metavariable, - STATE(981), 1, + STATE(963), 1, sym_scoped_identifier, - STATE(1406), 1, + STATE(1357), 1, sym_bracketed_type, - STATE(1454), 1, + STATE(1405), 1, sym_generic_type_with_turbofish, - ACTIONS(2121), 2, + ACTIONS(2125), 2, anon_sym_default, anon_sym_union, - STATE(1463), 5, + STATE(1360), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 9, + ACTIONS(2117), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62289,21 +62626,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29364] = 4, + [29516] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2135), 8, - anon_sym_SEMI, + ACTIONS(2137), 1, + anon_sym_POUND, + STATE(705), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(1277), 5, anon_sym_DOT, anon_sym_STAR, anon_sym_LT, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, sym_metavariable, - ACTIONS(2133), 14, + ACTIONS(1275), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62312,18 +62651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_channel, anon_sym_default, anon_sym_fn, - anon_sym_for, + anon_sym_pub, sym_identifier, anon_sym_union, sym_self, sym_super, sym_crate, - [29397] = 4, + [29553] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2139), 8, + ACTIONS(2142), 8, anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, @@ -62332,7 +62671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, sym_metavariable, - ACTIONS(2137), 14, + ACTIONS(2140), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62347,12 +62686,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29430] = 4, + [29586] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2143), 8, + ACTIONS(2146), 8, anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, @@ -62361,7 +62700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, sym_metavariable, - ACTIONS(2141), 14, + ACTIONS(2144), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62376,23 +62715,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29463] = 6, + [29619] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2145), 1, - anon_sym_POUND, - STATE(704), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(1277), 5, + ACTIONS(2150), 8, + anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, anon_sym_LT, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, sym_metavariable, - ACTIONS(1275), 14, + ACTIONS(2148), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62401,18 +62738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_channel, anon_sym_default, anon_sym_fn, - anon_sym_pub, + anon_sym_for, sym_identifier, anon_sym_union, sym_self, sym_super, sym_crate, - [29500] = 4, + [29652] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2150), 8, + ACTIONS(2154), 8, anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, @@ -62421,7 +62758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, sym_metavariable, - ACTIONS(2148), 14, + ACTIONS(2152), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62436,12 +62773,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29533] = 4, + [29685] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2154), 8, + ACTIONS(2158), 8, anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, @@ -62450,7 +62787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, sym_metavariable, - ACTIONS(2152), 14, + ACTIONS(2156), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62465,12 +62802,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29566] = 4, + [29718] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2158), 8, + ACTIONS(2162), 8, anon_sym_SEMI, anon_sym_DOT, anon_sym_STAR, @@ -62479,7 +62816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LPAREN, sym_metavariable, - ACTIONS(2156), 14, + ACTIONS(2160), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62494,12 +62831,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29599] = 3, + [29751] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1065), 20, + ACTIONS(1085), 20, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -62520,18 +62857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29628] = 3, + [29780] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(989), 20, + ACTIONS(865), 20, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_POUND, anon_sym_bench, + anon_sym_case, anon_sym_const, + anon_sym_default, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -62546,12 +62883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29657] = 3, + [29809] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1157), 20, + ACTIONS(973), 20, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -62572,39 +62909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29686] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1101), 6, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LT, - anon_sym_LBRACK, - sym_metavariable, - ACTIONS(1103), 14, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - anon_sym_default, - anon_sym_fn, - anon_sym_pub, - sym_identifier, - anon_sym_union, - sym_self, - sym_super, - sym_crate, - [29717] = 3, + [29838] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1025), 20, + ACTIONS(1037), 20, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -62625,18 +62935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29746] = 3, + [29867] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1029), 20, + ACTIONS(1057), 20, anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_POUND, anon_sym_bench, - anon_sym_case, anon_sym_const, - anon_sym_default, anon_sym_enum, anon_sym_fn, anon_sym_impl, @@ -62651,12 +62961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29775] = 3, + [29896] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(897), 20, + ACTIONS(901), 20, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -62677,149 +62987,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [29804] = 9, + [29925] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1324), 1, - anon_sym_COLON_COLON, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(1420), 1, - anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(1049), 6, anon_sym_DOT, - STATE(833), 1, - sym_parameters, - STATE(834), 1, - sym_type_arguments, - ACTIONS(1320), 13, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - [29844] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1189), 1, + anon_sym_STAR, + anon_sym_POUND, anon_sym_LT, - ACTIONS(2049), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + anon_sym_LBRACK, sym_metavariable, - STATE(942), 1, - sym_scoped_identifier, - STATE(1385), 1, - sym_attribute, - STATE(1398), 1, - sym_bracketed_type, - STATE(1410), 1, - sym_generic_type_with_turbofish, - ACTIONS(2166), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2164), 9, + ACTIONS(1051), 14, anon_sym_int, anon_sym_float, anon_sym_decimal, anon_sym_bool, anon_sym_string, anon_sym_channel, - sym_self, - sym_super, - sym_crate, - [29890] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1189), 1, - anon_sym_LT, - ACTIONS(2049), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, - sym_metavariable, - STATE(942), 1, - sym_scoped_identifier, - STATE(1396), 1, - sym_attribute, - STATE(1398), 1, - sym_bracketed_type, - STATE(1410), 1, - sym_generic_type_with_turbofish, - ACTIONS(2166), 2, anon_sym_default, - anon_sym_union, - ACTIONS(2164), 9, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - sym_self, - sym_super, - sym_crate, - [29936] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1189), 1, - anon_sym_LT, - ACTIONS(2049), 1, - anon_sym_DOT, - ACTIONS(2162), 1, + anon_sym_fn, + anon_sym_pub, sym_identifier, - ACTIONS(2168), 1, - sym_metavariable, - STATE(942), 1, - sym_scoped_identifier, - STATE(1379), 1, - sym_attribute, - STATE(1398), 1, - sym_bracketed_type, - STATE(1410), 1, - sym_generic_type_with_turbofish, - ACTIONS(2166), 2, - anon_sym_default, anon_sym_union, - ACTIONS(2164), 9, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, sym_self, sym_super, sym_crate, - [29982] = 4, + [29956] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1101), 3, + ACTIONS(1049), 3, anon_sym_SEMI, anon_sym_POUND, anon_sym_RBRACE, - ACTIONS(1103), 16, + ACTIONS(1051), 16, anon_sym_bench, anon_sym_const, anon_sym_enum, @@ -62836,31 +63040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym_identifier, sym_crate, - [30012] = 12, + [29986] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2164), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2170), 1, sym_metavariable, - STATE(942), 1, + STATE(937), 1, sym_scoped_identifier, - STATE(1398), 1, + STATE(1402), 1, sym_bracketed_type, - STATE(1410), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1470), 1, + STATE(1495), 1, sym_attribute, - ACTIONS(2166), 2, + ACTIONS(2168), 2, anon_sym_default, anon_sym_union, - ACTIONS(2164), 9, + ACTIONS(2166), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62870,31 +63074,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30058] = 12, + [30032] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2164), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2170), 1, sym_metavariable, - STATE(942), 1, + STATE(937), 1, sym_scoped_identifier, - STATE(1369), 1, + STATE(1355), 1, sym_attribute, - STATE(1398), 1, + STATE(1402), 1, sym_bracketed_type, - STATE(1410), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - ACTIONS(2166), 2, + ACTIONS(2168), 2, anon_sym_default, anon_sym_union, - ACTIONS(2164), 9, + ACTIONS(2166), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62904,31 +63108,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30104] = 12, + [30078] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2164), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2170), 1, sym_metavariable, - STATE(942), 1, + STATE(937), 1, sym_scoped_identifier, - STATE(1398), 1, + STATE(1375), 1, + sym_attribute, + STATE(1402), 1, sym_bracketed_type, - STATE(1410), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1419), 1, - sym_attribute, - ACTIONS(2166), 2, + ACTIONS(2168), 2, anon_sym_default, anon_sym_union, - ACTIONS(2164), 9, + ACTIONS(2166), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62938,31 +63142,65 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30150] = 12, + [30124] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_LT, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2164), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2170), 1, sym_metavariable, - STATE(942), 1, + STATE(937), 1, sym_scoped_identifier, - STATE(1398), 1, + STATE(1383), 1, + sym_attribute, + STATE(1402), 1, sym_bracketed_type, - STATE(1399), 1, + STATE(1414), 1, + sym_generic_type_with_turbofish, + ACTIONS(2168), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2166), 9, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + sym_self, + sym_super, + sym_crate, + [30170] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(2053), 1, + anon_sym_DOT, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2170), 1, + sym_metavariable, + STATE(937), 1, + sym_scoped_identifier, + STATE(1389), 1, sym_attribute, - STATE(1410), 1, + STATE(1402), 1, + sym_bracketed_type, + STATE(1414), 1, sym_generic_type_with_turbofish, - ACTIONS(2166), 2, + ACTIONS(2168), 2, anon_sym_default, anon_sym_union, - ACTIONS(2164), 9, + ACTIONS(2166), 9, anon_sym_int, anon_sym_float, anon_sym_decimal, @@ -62972,36 +63210,111 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30196] = 3, + [30216] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(993), 18, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(2053), 1, + anon_sym_DOT, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2170), 1, + sym_metavariable, + STATE(937), 1, + sym_scoped_identifier, + STATE(1402), 1, + sym_bracketed_type, + STATE(1414), 1, + sym_generic_type_with_turbofish, + STATE(1454), 1, + sym_attribute, + ACTIONS(2168), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2166), 9, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + sym_self, + sym_super, + sym_crate, + [30262] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1324), 1, + anon_sym_COLON_COLON, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(1382), 1, + anon_sym_LT2, + ACTIONS(2172), 1, + anon_sym_DOT, + STATE(836), 1, + sym_type_arguments, + STATE(840), 1, + sym_parameters, + ACTIONS(1320), 13, anon_sym_SEMI, - anon_sym_POUND, - anon_sym_bench, - anon_sym_const, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RPAREN, + [30302] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1191), 1, + anon_sym_LT, + ACTIONS(2053), 1, + anon_sym_DOT, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2170), 1, + sym_metavariable, + STATE(937), 1, + sym_scoped_identifier, + STATE(1402), 1, + sym_bracketed_type, + STATE(1414), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, + sym_attribute, + ACTIONS(2168), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2166), 9, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + sym_self, + sym_super, sym_crate, - [30223] = 3, + [30348] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1117), 18, + ACTIONS(857), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63020,12 +63333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30250] = 3, + [30375] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(969), 18, + ACTIONS(869), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63044,12 +63357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30277] = 3, + [30402] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(973), 18, + ACTIONS(913), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63068,36 +63381,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30304] = 3, + [30429] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(977), 18, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_bench, - anon_sym_const, - anon_sym_enum, + ACTIONS(2172), 1, + anon_sym_DOT, + ACTIONS(2176), 4, + anon_sym_STAR, + anon_sym_LT, + anon_sym_LBRACK, + sym_metavariable, + ACTIONS(2174), 13, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + anon_sym_default, anon_sym_fn, - anon_sym_impl, - anon_sym_interface, - anon_sym_let, - anon_sym_pub, - anon_sym_struct, - anon_sym_test, - anon_sym_throw, - anon_sym_try, - anon_sym_type, - anon_sym_use, - anon_sym_RBRACE, + sym_identifier, + anon_sym_union, + sym_self, + sym_super, sym_crate, - [30331] = 3, + [30460] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(981), 18, + ACTIONS(909), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63116,12 +63431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30358] = 3, + [30487] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(985), 18, + ACTIONS(917), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63140,37 +63455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30385] = 4, + [30514] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2172), 5, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT, - anon_sym_LBRACK, - sym_metavariable, - ACTIONS(2170), 13, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - anon_sym_default, - anon_sym_fn, - sym_identifier, - anon_sym_union, - sym_self, - sym_super, - sym_crate, - [30414] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(949), 18, + ACTIONS(905), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63189,38 +63479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30441] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2172), 4, - anon_sym_STAR, - anon_sym_LT, - anon_sym_LBRACK, - sym_metavariable, - ACTIONS(2170), 13, - anon_sym_int, - anon_sym_float, - anon_sym_decimal, - anon_sym_bool, - anon_sym_string, - anon_sym_channel, - anon_sym_default, - anon_sym_fn, - sym_identifier, - anon_sym_union, - sym_self, - sym_super, - sym_crate, - [30472] = 3, + [30541] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(997), 18, + ACTIONS(921), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63239,12 +63503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30499] = 3, + [30568] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1001), 18, + ACTIONS(1101), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63263,12 +63527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30526] = 3, + [30595] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1097), 18, + ACTIONS(1149), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63287,12 +63551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30553] = 3, + [30622] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1005), 18, + ACTIONS(1153), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63311,12 +63575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30580] = 3, + [30649] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(945), 18, + ACTIONS(925), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63335,12 +63599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30607] = 3, + [30676] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1009), 18, + ACTIONS(929), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63359,12 +63623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30634] = 3, + [30703] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1013), 18, + ACTIONS(1161), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63383,12 +63647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30661] = 3, + [30730] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1017), 18, + ACTIONS(1109), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63407,12 +63671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30688] = 3, + [30757] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1021), 18, + ACTIONS(977), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63431,12 +63695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30715] = 3, + [30784] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1033), 18, + ACTIONS(981), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63455,12 +63719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30742] = 3, + [30811] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1041), 18, + ACTIONS(1125), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63479,12 +63743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30769] = 3, + [30838] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1045), 18, + ACTIONS(945), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63503,12 +63767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30796] = 3, + [30865] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1049), 18, + ACTIONS(949), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63527,12 +63791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30823] = 3, + [30892] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1053), 18, + ACTIONS(893), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63551,12 +63815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30850] = 3, + [30919] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1037), 18, + ACTIONS(941), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63575,12 +63839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30877] = 3, + [30946] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1061), 18, + ACTIONS(937), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63599,12 +63863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30904] = 3, + [30973] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1069), 18, + ACTIONS(841), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63623,45 +63887,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [30931] = 12, + [31000] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1324), 1, - anon_sym_COLON_COLON, - ACTIONS(1420), 1, - anon_sym_LT2, - ACTIONS(2176), 1, - anon_sym_COLON, - ACTIONS(2178), 1, + ACTIONS(2176), 5, anon_sym_DOT, - ACTIONS(2180), 1, - anon_sym_AT, - ACTIONS(2182), 1, - anon_sym_LBRACE, - ACTIONS(2184), 1, - anon_sym_DOT_DOT, - STATE(834), 1, - sym_type_arguments, - ACTIONS(2186), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2174), 8, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [30976] = 3, + anon_sym_STAR, + anon_sym_LT, + anon_sym_LBRACK, + sym_metavariable, + ACTIONS(2174), 13, + anon_sym_int, + anon_sym_float, + anon_sym_decimal, + anon_sym_bool, + anon_sym_string, + anon_sym_channel, + anon_sym_default, + anon_sym_fn, + sym_identifier, + anon_sym_union, + sym_self, + sym_super, + sym_crate, + [31029] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1113), 18, + ACTIONS(897), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63680,12 +63936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31003] = 3, + [31056] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1149), 18, + ACTIONS(933), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63704,7 +63960,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31030] = 3, + [31083] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(953), 18, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_bench, + anon_sym_const, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_RBRACE, + sym_crate, + [31110] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -63728,12 +64008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31057] = 3, + [31137] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1057), 18, + ACTIONS(985), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63752,12 +64032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31084] = 3, + [31164] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1125), 18, + ACTIONS(889), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63776,12 +64056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31111] = 3, + [31191] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1129), 18, + ACTIONS(885), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63800,12 +64080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31138] = 3, + [31218] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1137), 18, + ACTIONS(969), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63824,12 +64104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31165] = 3, + [31245] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1141), 18, + ACTIONS(989), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63848,12 +64128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31192] = 3, + [31272] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(957), 18, + ACTIONS(881), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63872,12 +64152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31219] = 3, + [31299] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1153), 18, + ACTIONS(853), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63896,12 +64176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31246] = 3, + [31326] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(941), 18, + ACTIONS(957), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63920,12 +64200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31273] = 3, + [31353] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(909), 18, + ACTIONS(877), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63944,12 +64224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31300] = 3, + [31380] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1165), 18, + ACTIONS(1145), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63968,12 +64248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31327] = 3, + [31407] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1169), 18, + ACTIONS(1129), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -63992,12 +64272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31354] = 3, + [31434] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1173), 18, + ACTIONS(993), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64016,12 +64296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31381] = 3, + [31461] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1105), 18, + ACTIONS(1117), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64040,12 +64320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31408] = 3, + [31488] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(961), 18, + ACTIONS(1113), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64064,12 +64344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31435] = 3, + [31515] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(905), 18, + ACTIONS(1097), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64088,12 +64368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31462] = 3, + [31542] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1081), 18, + ACTIONS(1133), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64112,12 +64392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31489] = 3, + [31569] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1077), 18, + ACTIONS(1093), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64136,12 +64416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31516] = 3, + [31596] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(845), 18, + ACTIONS(873), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64160,12 +64440,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31543] = 3, + [31623] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(953), 18, + ACTIONS(1324), 1, + anon_sym_COLON_COLON, + ACTIONS(1382), 1, + anon_sym_LT2, + ACTIONS(2180), 1, + anon_sym_COLON, + ACTIONS(2182), 1, + anon_sym_DOT, + ACTIONS(2184), 1, + anon_sym_AT, + ACTIONS(2186), 1, + anon_sym_LBRACE, + ACTIONS(2188), 1, + anon_sym_DOT_DOT, + STATE(836), 1, + sym_type_arguments, + ACTIONS(2190), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2178), 8, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + [31668] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1089), 18, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_bench, + anon_sym_const, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_interface, + anon_sym_let, + anon_sym_pub, + anon_sym_struct, + anon_sym_test, + anon_sym_throw, + anon_sym_try, + anon_sym_type, + anon_sym_use, + anon_sym_RBRACE, + sym_crate, + [31695] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1105), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64184,12 +64521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31570] = 3, + [31722] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(901), 18, + ACTIONS(961), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64208,7 +64545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31597] = 3, + [31749] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -64232,12 +64569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31624] = 3, + [31776] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(913), 18, + ACTIONS(965), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64256,12 +64593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31651] = 3, + [31803] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(889), 18, + ACTIONS(845), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64280,12 +64617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31678] = 3, + [31830] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(885), 18, + ACTIONS(1081), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64304,12 +64641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31705] = 3, + [31857] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(881), 18, + ACTIONS(1045), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64328,12 +64665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31732] = 3, + [31884] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(853), 18, + ACTIONS(1077), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64352,12 +64689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31759] = 3, + [31911] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(849), 18, + ACTIONS(1073), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64376,12 +64713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31786] = 3, + [31938] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(841), 18, + ACTIONS(997), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64400,12 +64737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31813] = 3, + [31965] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1073), 18, + ACTIONS(1069), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64424,12 +64761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31840] = 3, + [31992] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(865), 18, + ACTIONS(1065), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64448,12 +64785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31867] = 3, + [32019] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(869), 18, + ACTIONS(1061), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64472,12 +64809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31894] = 3, + [32046] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(873), 18, + ACTIONS(1141), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64496,12 +64833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31921] = 3, + [32073] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(877), 18, + ACTIONS(1053), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64520,12 +64857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31948] = 3, + [32100] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(893), 18, + ACTIONS(1001), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64544,12 +64881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [31975] = 3, + [32127] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(857), 18, + ACTIONS(1173), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64568,12 +64905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32002] = 3, + [32154] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(921), 18, + ACTIONS(1033), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64592,12 +64929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32029] = 3, + [32181] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1085), 18, + ACTIONS(1169), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64616,12 +64953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32056] = 3, + [32208] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1161), 18, + ACTIONS(1029), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64640,12 +64977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32083] = 3, + [32235] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(917), 18, + ACTIONS(1165), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64664,12 +65001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32110] = 3, + [32262] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1145), 18, + ACTIONS(1025), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64688,12 +65025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32137] = 3, + [32289] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1133), 18, + ACTIONS(1021), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64712,12 +65049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32164] = 3, + [32316] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(925), 18, + ACTIONS(1017), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64736,12 +65073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32191] = 3, + [32343] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(929), 18, + ACTIONS(849), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64760,12 +65097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32218] = 3, + [32370] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(933), 18, + ACTIONS(1009), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64784,12 +65121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32245] = 3, + [32397] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(937), 18, + ACTIONS(1005), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64808,12 +65145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32272] = 3, + [32424] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(965), 18, + ACTIONS(1041), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64832,12 +65169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32299] = 3, + [32451] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1089), 18, + ACTIONS(1157), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64856,12 +65193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32326] = 3, + [32478] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1093), 18, + ACTIONS(1137), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64880,12 +65217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32353] = 3, + [32505] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1109), 18, + ACTIONS(1013), 18, anon_sym_SEMI, anon_sym_POUND, anon_sym_bench, @@ -64904,15 +65241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_RBRACE, sym_crate, - [32380] = 4, + [32532] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1350), 2, + ACTIONS(1368), 2, anon_sym_COLON_COLON, anon_sym_DOT, - ACTIONS(1346), 15, + ACTIONS(1364), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -64928,15 +65265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT2, - [32408] = 4, + [32560] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1359), 2, - anon_sym_COLON_COLON, - anon_sym_DOT, - ACTIONS(1355), 15, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(1382), 1, + anon_sym_LT2, + STATE(826), 1, + sym_parameters, + STATE(828), 1, + sym_type_arguments, + ACTIONS(1333), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -64949,23 +65291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT2, - [32436] = 7, + [32594] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(1420), 1, - anon_sym_LT2, - STATE(835), 1, - sym_type_arguments, - STATE(836), 1, - sym_parameters, - ACTIONS(1333), 13, + ACTIONS(1359), 2, + anon_sym_COLON_COLON, + anon_sym_DOT, + ACTIONS(1355), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -64978,16 +65313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - [32470] = 4, + anon_sym_LT2, + [32622] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1368), 2, + ACTIONS(1350), 2, anon_sym_COLON_COLON, anon_sym_DOT, - ACTIONS(1364), 15, + ACTIONS(1346), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65003,7 +65340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT2, - [32498] = 4, + [32650] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -65027,19 +65364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT2, - [32526] = 5, + [32678] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1364), 2, + ACTIONS(1337), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1432), 3, + ACTIONS(1515), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1368), 11, + ACTIONS(1341), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65051,19 +65388,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32555] = 5, + [32707] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1346), 2, + ACTIONS(1364), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1528), 3, + ACTIONS(1430), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1350), 11, + ACTIONS(1368), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65075,19 +65412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32584] = 5, + [32736] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1337), 2, + ACTIONS(1355), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1512), 3, + ACTIONS(1528), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1341), 11, + ACTIONS(1359), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65099,19 +65436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32613] = 5, + [32765] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1355), 2, + ACTIONS(1346), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1430), 3, + ACTIONS(1477), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 11, + ACTIONS(1350), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65123,12 +65460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32642] = 3, + [32794] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1379), 15, + ACTIONS(1394), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_DASH_GT, @@ -65144,17 +65481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32666] = 3, + [32818] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1387), 15, + ACTIONS(1355), 15, anon_sym_SEMI, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_COLON, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -65164,13 +65499,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT2, + [32842] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1382), 1, + anon_sym_LT2, + ACTIONS(2194), 1, + anon_sym_DOT, + ACTIONS(2196), 1, + anon_sym_DOT_DOT, + STATE(843), 1, + sym_type_arguments, + ACTIONS(2198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2192), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_RPAREN, - [32690] = 3, + anon_sym_in, + [32876] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1383), 15, + ACTIONS(1418), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_DASH_GT, @@ -65186,41 +65549,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32714] = 8, + [32900] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, - anon_sym_LT2, - ACTIONS(2190), 1, - anon_sym_DOT, - ACTIONS(2192), 1, - anon_sym_DOT_DOT, - STATE(830), 1, - sym_type_arguments, - ACTIONS(2194), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2188), 9, + ACTIONS(1410), 15, anon_sym_SEMI, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - [32748] = 3, + [32924] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1337), 15, + ACTIONS(1384), 15, anon_sym_SEMI, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -65230,15 +65590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT2, - [32772] = 3, + [32948] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1407), 15, + ACTIONS(1414), 15, anon_sym_SEMI, anon_sym_EQ, anon_sym_DASH_GT, @@ -65254,17 +65612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32796] = 3, + [32972] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(2200), 1, + anon_sym_DASH_GT, + ACTIONS(1388), 13, anon_sym_SEMI, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_COLON, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -65275,16 +65633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32820] = 4, + [32997] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1512), 3, + ACTIONS(1430), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1341), 11, + ACTIONS(1368), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65296,17 +65654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32845] = 3, + [33022] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1474), 14, + ACTIONS(2202), 1, + anon_sym_DASH_GT, + ACTIONS(1404), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DOT, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, @@ -65316,33 +65675,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32868] = 4, + [33047] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1430), 1, - anon_sym_COLON, - ACTIONS(1359), 13, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + anon_sym_BQUOTE, + ACTIONS(2204), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(2206), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_in, - [32893] = 3, + STATE(1440), 1, + sym__literal, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(420), 3, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(93), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [33084] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1422), 14, + ACTIONS(1479), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65357,98 +65722,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [32916] = 4, + [33107] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1432), 3, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1368), 11, + ACTIONS(1511), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [32941] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1430), 3, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 11, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [32966] = 4, + [33130] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1528), 1, - anon_sym_COLON, - ACTIONS(1350), 13, + ACTIONS(1491), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_QMARK, anon_sym_DOT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_LBRACK, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_in, - [32991] = 4, + [33153] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1523), 1, + ACTIONS(1477), 3, anon_sym_COLON, - ACTIONS(1521), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1350), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_DOT, anon_sym_PIPE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_in, - [33016] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33178] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1432), 1, + ACTIONS(1515), 1, anon_sym_COLON, - ACTIONS(1368), 13, + ACTIONS(1341), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65462,38 +65804,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_in, - [33041] = 4, + [33203] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1523), 3, - anon_sym_COLON, + ACTIONS(2210), 1, anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1521), 11, + ACTIONS(1333), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [33066] = 3, + [33228] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1490), 14, + ACTIONS(2172), 1, + anon_sym_DOT, + ACTIONS(1446), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DOT, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, @@ -65503,14 +65846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33089] = 4, + [33253] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2196), 1, - anon_sym_DASH_GT, - ACTIONS(1391), 13, + ACTIONS(2172), 1, + anon_sym_DOT, + ACTIONS(1333), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65524,18 +65867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33114] = 4, + [33278] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(1514), 13, + ACTIONS(1469), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_DOT, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, @@ -65545,75 +65887,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33139] = 4, + [33301] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2198), 1, - anon_sym_DASH_GT, - ACTIONS(1401), 13, + ACTIONS(1528), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1359), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33164] = 3, + anon_sym_in, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33326] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1454), 14, + ACTIONS(2180), 1, + anon_sym_COLON, + ACTIONS(2182), 1, + anon_sym_DOT, + ACTIONS(2188), 1, + anon_sym_DOT_DOT, + ACTIONS(2212), 1, + anon_sym_COLON_COLON, + ACTIONS(2190), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2178), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33187] = 3, + anon_sym_in, + [33359] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1482), 14, + ACTIONS(1428), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1426), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33210] = 4, + anon_sym_in, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33384] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2200), 1, + ACTIONS(2214), 1, anon_sym_DASH_GT, - ACTIONS(1373), 13, + ACTIONS(1398), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65627,18 +65975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33235] = 4, + [33409] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2202), 1, - anon_sym_DOT, - ACTIONS(1333), 13, + ACTIONS(1507), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_DOT, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, @@ -65648,14 +65995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33260] = 4, + [33432] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1512), 1, + ACTIONS(1528), 1, anon_sym_COLON, - ACTIONS(1341), 13, + ACTIONS(1359), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65669,12 +66016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_in, - [33285] = 3, + [33457] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1458), 14, + ACTIONS(1465), 14, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65689,43 +66036,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33308] = 10, + [33480] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_BQUOTE, - ACTIONS(2204), 1, + ACTIONS(1477), 1, + anon_sym_COLON, + ACTIONS(1350), 13, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2206), 1, + anon_sym_COLON_COLON, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1365), 1, - sym__literal, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(388), 3, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(93), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [33345] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + [33505] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1528), 3, + ACTIONS(1515), 3, anon_sym_COLON, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1350), 11, + ACTIONS(1341), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65737,60 +66078,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33370] = 8, + [33530] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2176), 1, + ACTIONS(1428), 1, anon_sym_COLON, - ACTIONS(2178), 1, - anon_sym_DOT, - ACTIONS(2184), 1, - anon_sym_DOT_DOT, - ACTIONS(2210), 1, - anon_sym_COLON_COLON, - ACTIONS(2186), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2174), 8, + ACTIONS(1426), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_in, - [33403] = 4, + [33555] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(1333), 13, + ACTIONS(1430), 1, + anon_sym_COLON, + ACTIONS(1368), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - [33428] = 4, + anon_sym_in, + [33580] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2212), 1, + ACTIONS(2216), 1, anon_sym_QMARK, - ACTIONS(1503), 12, + ACTIONS(1456), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65803,7 +66140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33452] = 9, + [33604] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -65812,14 +66149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_BQUOTE, - ACTIONS(2214), 1, + ACTIONS(2218), 1, anon_sym_RBRACE, - STATE(1370), 1, + STATE(1413), 1, sym__literal, ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(388), 3, + STATE(420), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -65828,12 +66165,12 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [33486] = 3, + [33638] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1446), 13, + ACTIONS(1503), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65847,32 +66184,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33508] = 4, + [33660] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(815), 1, - anon_sym_DOT_DOT, - ACTIONS(817), 12, + ACTIONS(1483), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [33532] = 3, + [33682] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1450), 13, + ACTIONS(1473), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65886,39 +66222,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33554] = 4, + [33704] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(799), 1, - anon_sym_DOT_DOT, - ACTIONS(801), 12, + ACTIONS(1495), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [33578] = 6, + [33726] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2178), 1, + ACTIONS(2182), 1, anon_sym_DOT, - ACTIONS(2184), 1, + ACTIONS(2188), 1, anon_sym_DOT_DOT, - ACTIONS(2186), 2, + ACTIONS(2190), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2174), 9, + ACTIONS(2178), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65928,34 +66263,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [33606] = 4, + [33754] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(791), 1, - anon_sym_DOT_DOT, - ACTIONS(793), 12, + ACTIONS(1487), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_throws, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [33630] = 4, + [33776] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(795), 1, + ACTIONS(803), 1, anon_sym_DOT_DOT, - ACTIONS(797), 12, + ACTIONS(805), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65968,12 +66302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33654] = 3, + [33800] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1426), 13, + ACTIONS(1499), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -65987,37 +66321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33676] = 9, + [33822] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_BQUOTE, - ACTIONS(2216), 1, + ACTIONS(807), 1, + anon_sym_DOT_DOT, + ACTIONS(809), 12, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1370), 1, - sym__literal, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(388), 3, - sym_string_literal, - sym_string_template, - sym_boolean_literal, - ACTIONS(93), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [33710] = 3, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33846] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1442), 13, + ACTIONS(1333), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66031,14 +66360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33732] = 4, + [33868] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(807), 1, + ACTIONS(811), 1, anon_sym_DOT_DOT, - ACTIONS(809), 12, + ACTIONS(813), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66051,69 +66380,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33756] = 3, + [33892] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1434), 13, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(95), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + anon_sym_BQUOTE, + ACTIONS(2220), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - [33778] = 3, + STATE(1413), 1, + sym__literal, + ACTIONS(2208), 2, + anon_sym_true, + anon_sym_false, + STATE(420), 3, + sym_string_literal, + sym_string_template, + sym_boolean_literal, + ACTIONS(93), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [33926] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1486), 13, + ACTIONS(795), 1, + anon_sym_DOT_DOT, + ACTIONS(797), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33800] = 3, + anon_sym_in, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33950] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1438), 13, + ACTIONS(815), 1, + anon_sym_DOT_DOT, + ACTIONS(817), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_throws, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33822] = 3, + anon_sym_in, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [33974] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1333), 13, + ACTIONS(1422), 13, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66127,14 +66464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33844] = 4, + [33996] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2218), 1, + ACTIONS(2222), 1, anon_sym_QMARK, - ACTIONS(1503), 12, + ACTIONS(1456), 12, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66147,7 +66484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - [33868] = 8, + [34020] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -66156,12 +66493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_BQUOTE, - STATE(1370), 1, + STATE(1413), 1, sym__literal, ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(388), 3, + STATE(420), 3, sym_string_literal, sym_string_template, sym_boolean_literal, @@ -66170,14 +66507,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [33899] = 4, + [34051] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2223), 1, + ACTIONS(2188), 1, anon_sym_DOT_DOT, - ACTIONS(2221), 11, + ACTIONS(2190), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2178), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66187,9 +66527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [33922] = 4, + [34076] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -66208,17 +66546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33945] = 5, + [34099] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2184), 1, + ACTIONS(2231), 1, anon_sym_DOT_DOT, - ACTIONS(2186), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2174), 9, + ACTIONS(2229), 11, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66228,18 +66563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [33970] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [34122] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2210), 1, + ACTIONS(2212), 1, anon_sym_COLON_COLON, - ACTIONS(2231), 1, + ACTIONS(2235), 1, anon_sym_COLON, - ACTIONS(2233), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2229), 8, + ACTIONS(2233), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66248,44 +66585,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [33996] = 12, + [34148] = 12, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(1415), 1, + ACTIONS(1377), 1, anon_sym_LPAREN, - ACTIONS(1420), 1, + ACTIONS(1382), 1, anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_DOT, - ACTIONS(2235), 1, + ACTIONS(2239), 1, anon_sym_COMMA, - ACTIONS(2237), 1, + ACTIONS(2241), 1, anon_sym_GT, - STATE(833), 1, - sym_parameters, - STATE(834), 1, + STATE(836), 1, sym_type_arguments, - STATE(1138), 1, + STATE(840), 1, + sym_parameters, + STATE(1237), 1, aux_sym_type_parameters_repeat1, ACTIONS(1320), 2, anon_sym_QMARK, anon_sym_as, - [34034] = 6, + [34186] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(2231), 1, + ACTIONS(2235), 1, anon_sym_COLON, - ACTIONS(2233), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2229), 8, + ACTIONS(2233), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66294,18 +66631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34060] = 6, + [34212] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(2233), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_COLON, - ACTIONS(2239), 8, + ACTIONS(2243), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66314,18 +66651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34086] = 6, + [34238] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2210), 1, + ACTIONS(2212), 1, anon_sym_COLON_COLON, - ACTIONS(2233), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2241), 1, + ACTIONS(2245), 1, anon_sym_COLON, - ACTIONS(2239), 8, + ACTIONS(2243), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66334,101 +66671,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34112] = 10, + [34264] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_COMMA, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_RBRACE, - STATE(1129), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(937), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [34145] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2229), 9, + ACTIONS(681), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, + anon_sym_GT, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34166] = 3, + [34283] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(695), 10, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2249), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2253), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [34185] = 4, + STATE(1209), 1, + sym_enum_variant, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [34316] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2253), 1, - anon_sym_DOT, - ACTIONS(2251), 9, + ACTIONS(673), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, + anon_sym_GT, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34206] = 3, + [34335] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(673), 10, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2233), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34225] = 3, + [34356] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(683), 10, + ACTIONS(685), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66439,30 +66759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34244] = 3, + [34375] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(691), 10, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2257), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2259), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [34263] = 4, + ACTIONS(2261), 1, + anon_sym_DOT_DOT, + STATE(1111), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1143), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [34406] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2253), 1, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2255), 9, + ACTIONS(2263), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66472,81 +66798,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34284] = 10, + [34427] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, sym_identifier, - ACTIONS(2259), 1, - anon_sym_COMMA, - ACTIONS(2261), 1, - anon_sym_RBRACE, - STATE(1146), 1, - sym_field_declaration, - STATE(1400), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(935), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [34317] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2263), 1, + ACTIONS(2267), 1, anon_sym_COMMA, - ACTIONS(2265), 1, + ACTIONS(2269), 1, anon_sym_RBRACE, - STATE(1239), 1, - sym_field_declaration, - STATE(1400), 1, + STATE(1126), 1, + sym_enum_variant, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(938), 2, + STATE(940), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34350] = 10, + [34460] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2267), 1, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(2269), 1, + ACTIONS(2275), 1, anon_sym_RBRACE, - STATE(1256), 1, - sym_enum_variant, - STATE(1436), 1, + STATE(1248), 1, + sym_field_declaration, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(936), 2, + STATE(943), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34383] = 3, + [34493] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(687), 10, + ACTIONS(695), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66557,115 +66860,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34402] = 4, + [34512] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2239), 9, + ACTIONS(677), 10, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, + anon_sym_GT, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34423] = 10, + [34531] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(1415), 1, + ACTIONS(1377), 1, anon_sym_LPAREN, - ACTIONS(1420), 1, + ACTIONS(1382), 1, anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_DOT, - ACTIONS(2271), 1, + ACTIONS(2277), 1, anon_sym_EQ, - STATE(833), 1, + STATE(840), 1, sym_parameters, - STATE(1008), 1, + STATE(1016), 1, sym_type_arguments, ACTIONS(1320), 3, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT, - [34456] = 9, + [34564] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2275), 1, - anon_sym_COMMA, - ACTIONS(2277), 1, - anon_sym_RBRACE, ACTIONS(2279), 1, - anon_sym_DOT_DOT, - STATE(1052), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1209), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [34487] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(2281), 1, anon_sym_RBRACE, - STATE(1320), 1, + STATE(1236), 1, sym_field_declaration, - STATE(1400), 1, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(929), 2, + STATE(942), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34517] = 8, + [34597] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_DOT_DOT, - ACTIONS(2283), 1, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2243), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1052), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1296), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [34545] = 3, + anon_sym_RPAREN, + anon_sym_in, + [34618] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2285), 9, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2283), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66675,33 +66956,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34563] = 9, + [34639] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2271), 1, sym_identifier, + ACTIONS(2285), 1, + anon_sym_RBRACE, + STATE(1347), 1, + sym_field_declaration, + STATE(1443), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(934), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [34669] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, anon_sym_POUND, ACTIONS(2287), 1, anon_sym_RBRACE, - STATE(1301), 1, + STATE(1350), 1, sym_enum_variant, - STATE(1436), 1, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(933), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [34699] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2289), 1, + anon_sym_RBRACE, + STATE(1347), 1, + sym_field_declaration, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(932), 2, + STATE(934), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34593] = 3, + [34729] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2289), 9, + ACTIONS(2291), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66711,12 +67034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34611] = 3, + [34747] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2291), 9, + ACTIONS(2293), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66726,33 +67049,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34629] = 9, + [34765] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2293), 1, + ACTIONS(2295), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1320), 1, - sym_field_declaration, - STATE(1400), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(929), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [34659] = 3, + anon_sym_RPAREN, + anon_sym_in, + [34783] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2295), 9, + ACTIONS(2297), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66762,12 +67079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34677] = 3, + [34801] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2297), 9, + ACTIONS(2178), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66777,33 +67094,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34695] = 9, + [34819] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2261), 1, + anon_sym_DOT_DOT, ACTIONS(2299), 1, anon_sym_RBRACE, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, + STATE(1111), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1270), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [34847] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_RBRACE, + STATE(1347), 1, + sym_field_declaration, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(932), 2, + STATE(934), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34725] = 3, + [34877] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2301), 9, + ACTIONS(2303), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66813,12 +67150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34743] = 3, + [34895] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2303), 9, + ACTIONS(2305), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66828,12 +67165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34761] = 3, + [34913] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2305), 9, + ACTIONS(2307), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66843,12 +67180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34779] = 3, + [34931] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2307), 9, + ACTIONS(2309), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -66858,64 +67195,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34797] = 9, + [34949] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, sym_identifier, - ACTIONS(2309), 1, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2311), 1, anon_sym_RBRACE, - STATE(1320), 1, - sym_field_declaration, - STATE(1400), 1, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(929), 2, + STATE(933), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34827] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2311), 9, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [34845] = 9, + [34979] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2257), 1, + ACTIONS(2271), 1, sym_identifier, ACTIONS(2313), 1, anon_sym_RBRACE, - STATE(1320), 1, + STATE(1347), 1, sym_field_declaration, - STATE(1400), 1, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(929), 2, + STATE(934), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34875] = 3, + [35009] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -66930,91 +67252,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [34893] = 9, + [35027] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(2317), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(932), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [34923] = 9, + anon_sym_RPAREN, + anon_sym_in, + [35045] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2319), 1, + ACTIONS(2319), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(932), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [34953] = 9, + anon_sym_RPAREN, + anon_sym_in, + [35063] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2261), 1, + anon_sym_DOT_DOT, ACTIONS(2321), 1, anon_sym_RBRACE, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(932), 2, + STATE(1111), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [34983] = 9, + STATE(1270), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [35091] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2323), 1, + ACTIONS(2323), 9, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(932), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [35013] = 3, + anon_sym_RPAREN, + anon_sym_in, + [35109] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67029,7 +67332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35031] = 3, + [35127] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67044,12 +67347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35049] = 3, + [35145] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(709), 9, + ACTIONS(2329), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67059,28 +67362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35067] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_RBRACE, - STATE(1320), 1, - sym_field_declaration, - STATE(1400), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(929), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [35097] = 3, + [35163] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67095,7 +67377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35115] = 3, + [35181] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67110,7 +67392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35133] = 3, + [35199] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67125,12 +67407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35151] = 3, + [35217] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2337), 9, + ACTIONS(775), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67140,42 +67422,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35169] = 3, + [35235] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2339), 9, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2337), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [35187] = 3, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(933), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35265] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2341), 9, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2339), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - [35205] = 3, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(933), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35295] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2174), 9, + ACTIONS(2341), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67185,7 +67479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35223] = 3, + [35313] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67200,32 +67494,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35241] = 8, + [35331] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2279), 1, - anon_sym_DOT_DOT, ACTIONS(2345), 1, anon_sym_RBRACE, - STATE(1052), 2, + STATE(1347), 1, + sym_field_declaration, + STATE(1443), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(934), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1296), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [35269] = 3, + [35361] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(933), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35391] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2347), 9, + ACTIONS(2349), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67235,12 +67551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35287] = 3, + [35409] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2349), 9, + ACTIONS(2233), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67250,7 +67566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35305] = 3, + [35427] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -67265,12 +67581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35323] = 3, + [35445] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2229), 9, + ACTIONS(2353), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67280,12 +67596,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35341] = 3, + [35463] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2353), 9, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2271), 1, + sym_identifier, + ACTIONS(2355), 1, + anon_sym_RBRACE, + STATE(1347), 1, + sym_field_declaration, + STATE(1443), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(934), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35493] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2357), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67295,33 +67632,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35359] = 9, + [35511] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2359), 1, anon_sym_RBRACE, - STATE(1320), 1, - sym_field_declaration, - STATE(1400), 1, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(929), 2, + STATE(933), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35389] = 3, + [35541] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2357), 9, + ACTIONS(2243), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67331,12 +67668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35407] = 3, + [35559] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2239), 9, + ACTIONS(2361), 9, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, @@ -67346,819 +67683,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_in, - [35425] = 8, + [35577] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, sym_identifier, - STATE(1336), 1, - sym_field_declaration, - STATE(1400), 1, + ACTIONS(2251), 1, + anon_sym_POUND, + STATE(1323), 1, + sym_enum_variant, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(977), 2, + STATE(980), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35452] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1324), 1, - anon_sym_COLON_COLON, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_EQ, - ACTIONS(2361), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, - anon_sym_RBRACK, - ACTIONS(2365), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_LPAREN, - STATE(1407), 1, - sym_delim_token_tree, - [35483] = 8, + [35604] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - STATE(1301), 1, - sym_enum_variant, - STATE(1436), 1, + ACTIONS(2271), 1, + sym_identifier, + STATE(1310), 1, + sym_field_declaration, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(932), 2, + STATE(980), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35510] = 8, + [35631] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - STATE(1258), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(977), 2, + ACTIONS(2255), 1, + sym_identifier, + ACTIONS(2261), 1, + anon_sym_DOT_DOT, + STATE(1111), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35537] = 8, + STATE(1270), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [35656] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, sym_identifier, - STATE(1320), 1, - sym_field_declaration, - STATE(1400), 1, + ACTIONS(2251), 1, + anon_sym_POUND, + STATE(1350), 1, + sym_enum_variant, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(929), 2, + STATE(933), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35564] = 4, + [35683] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2369), 1, + ACTIONS(2212), 1, + anon_sym_COLON_COLON, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2172), 7, - anon_sym_const, - anon_sym_enum, - anon_sym_fn, - anon_sym_interface, - anon_sym_struct, - anon_sym_type, - anon_sym_use, - [35583] = 8, + ACTIONS(2363), 1, + anon_sym_EQ, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + anon_sym_RBRACK, + ACTIONS(2369), 1, + anon_sym_LBRACE, + ACTIONS(2371), 1, + anon_sym_LPAREN, + STATE(1469), 1, + sym_delim_token_tree, + [35714] = 10, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym_identifier, - STATE(1224), 1, - sym_field_declaration, - STATE(1400), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(977), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [35610] = 8, + ACTIONS(1324), 1, + anon_sym_COLON_COLON, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_EQ, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, + anon_sym_RBRACK, + ACTIONS(2369), 1, + anon_sym_LBRACE, + ACTIONS(2371), 1, + anon_sym_LPAREN, + STATE(1469), 1, + sym_delim_token_tree, + [35745] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2247), 1, - anon_sym_POUND, - STATE(1225), 1, - sym_enum_variant, - STATE(1436), 1, - sym_visibility_modifier, - ACTIONS(57), 2, - anon_sym_pub, - sym_crate, - STATE(977), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [35637] = 8, + ACTIONS(2373), 1, + anon_sym_DOT, + ACTIONS(2176), 7, + anon_sym_const, + anon_sym_enum, + anon_sym_fn, + anon_sym_interface, + anon_sym_struct, + anon_sym_type, + anon_sym_use, + [35764] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2243), 1, - sym_identifier, ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, anon_sym_POUND, - STATE(1208), 1, + STATE(1213), 1, sym_enum_variant, - STATE(1436), 1, + STATE(1422), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(977), 2, + STATE(980), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35664] = 8, + [35791] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2257), 1, + ACTIONS(2271), 1, sym_identifier, - STATE(1222), 1, + STATE(1347), 1, sym_field_declaration, - STATE(1400), 1, + STATE(1443), 1, sym_visibility_modifier, ACTIONS(57), 2, anon_sym_pub, sym_crate, - STATE(977), 2, + STATE(934), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [35691] = 3, + [35818] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2170), 8, - anon_sym_const, - anon_sym_enum, - anon_sym_fn, - anon_sym_interface, - anon_sym_struct, - anon_sym_type, - anon_sym_use, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2271), 1, sym_identifier, - [35708] = 7, + STATE(1203), 1, + sym_field_declaration, + STATE(1443), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(980), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35845] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, + ACTIONS(2251), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(2271), 1, sym_identifier, - ACTIONS(2279), 1, - anon_sym_DOT_DOT, - STATE(1052), 2, + STATE(1228), 1, + sym_field_declaration, + STATE(1443), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(980), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1296), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [35733] = 9, + [35872] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(1415), 1, + ACTIONS(1377), 1, anon_sym_LPAREN, - ACTIONS(1420), 1, + ACTIONS(1382), 1, anon_sym_LT2, - ACTIONS(2160), 1, + ACTIONS(2172), 1, anon_sym_DOT, - STATE(834), 1, + STATE(836), 1, sym_type_arguments, - STATE(1143), 1, + STATE(1204), 1, sym_parameters, ACTIONS(1320), 2, anon_sym_SEMI, anon_sym_LBRACE, - [35762] = 10, + [35901] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2210), 1, - anon_sym_COLON_COLON, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_EQ, - ACTIONS(2361), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, - anon_sym_RBRACK, - ACTIONS(2365), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_LPAREN, - STATE(1407), 1, - sym_delim_token_tree, - [35793] = 9, + ACTIONS(2174), 8, + anon_sym_const, + anon_sym_enum, + anon_sym_fn, + anon_sym_interface, + anon_sym_struct, + anon_sym_type, + anon_sym_use, + sym_identifier, + [35918] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - anon_sym_SEMI, - ACTIONS(2373), 1, - anon_sym_COLON, - ACTIONS(2375), 1, - anon_sym_throws, - ACTIONS(2377), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_block, - STATE(1478), 1, - sym_label, - [35821] = 7, + ACTIONS(2247), 1, + sym_identifier, + ACTIONS(2251), 1, + anon_sym_POUND, + STATE(1132), 1, + sym_enum_variant, + STATE(1422), 1, + sym_visibility_modifier, + ACTIONS(57), 2, + anon_sym_pub, + sym_crate, + STATE(980), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [35945] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2379), 1, + ACTIONS(2375), 1, anon_sym_EQ, - ACTIONS(2383), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - ACTIONS(2385), 1, + ACTIONS(2381), 1, anon_sym_LPAREN, - ACTIONS(2381), 2, + ACTIONS(2377), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1204), 2, + STATE(1128), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [35845] = 9, + [35969] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2127), 1, anon_sym_LBRACE, + ACTIONS(2385), 1, + anon_sym_STAR, ACTIONS(2387), 1, - anon_sym_SEMI, - ACTIONS(2389), 1, - anon_sym_COLON, - ACTIONS(2391), 1, - anon_sym_throws, - STATE(284), 1, - sym_block, - STATE(1478), 1, - sym_label, - [35873] = 9, + anon_sym_LPAREN, + STATE(419), 1, + sym_type_assertion, + STATE(1185), 1, + sym_use_list, + ACTIONS(2383), 2, + sym_identifier, + sym_super, + [35995] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2393), 1, + ACTIONS(2389), 1, anon_sym_SEMI, - ACTIONS(2395), 1, + ACTIONS(2391), 1, anon_sym_COLON, - ACTIONS(2397), 1, + ACTIONS(2393), 1, anon_sym_throws, - STATE(792), 1, + ACTIONS(2395), 1, + anon_sym_LBRACE, + STATE(214), 1, sym_block, - STATE(1467), 1, + STATE(1482), 1, sym_label, - [35901] = 9, + [36023] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2399), 1, + ACTIONS(2395), 1, + anon_sym_LBRACE, + ACTIONS(2397), 1, anon_sym_SEMI, - ACTIONS(2401), 1, + ACTIONS(2399), 1, anon_sym_COLON, - ACTIONS(2403), 1, + ACTIONS(2401), 1, anon_sym_throws, - STATE(758), 1, + STATE(226), 1, sym_block, - STATE(1467), 1, + STATE(1482), 1, sym_label, - [35929] = 9, + [36051] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, + ACTIONS(2403), 1, + anon_sym_const, ACTIONS(2405), 1, - anon_sym_SEMI, + anon_sym_enum, ACTIONS(2407), 1, - anon_sym_COLON, + anon_sym_fn, ACTIONS(2409), 1, - anon_sym_throws, - STATE(785), 1, - sym_block, - STATE(1467), 1, - sym_label, - [35957] = 9, + anon_sym_interface, + ACTIONS(2411), 1, + anon_sym_struct, + ACTIONS(2413), 1, + anon_sym_type, + ACTIONS(2415), 1, + anon_sym_use, + [36079] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2411), 1, + ACTIONS(2417), 1, anon_sym_SEMI, - ACTIONS(2413), 1, + ACTIONS(2419), 1, anon_sym_COLON, - ACTIONS(2415), 1, + ACTIONS(2421), 1, anon_sym_throws, - STATE(771), 1, + STATE(729), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [35985] = 9, + [36107] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2253), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_LBRACK, + ACTIONS(2363), 1, + anon_sym_EQ, ACTIONS(2365), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(2367), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_EQ, - ACTIONS(2419), 1, anon_sym_RBRACK, - STATE(1415), 1, + ACTIONS(2369), 1, + anon_sym_LBRACE, + ACTIONS(2371), 1, + anon_sym_LPAREN, + STATE(1469), 1, sym_delim_token_tree, - [36013] = 9, + [36135] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2421), 1, - anon_sym_SEMI, + ACTIONS(1444), 1, + anon_sym_SQUOTE, ACTIONS(2423), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(2425), 1, + anon_sym_COLON, + ACTIONS(2427), 1, anon_sym_throws, - STATE(269), 1, + STATE(733), 1, sym_block, - STATE(1478), 1, + STATE(1471), 1, sym_label, - [36041] = 8, + [36163] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2123), 1, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2365), 1, + anon_sym_LBRACK, + ACTIONS(2369), 1, anon_sym_LBRACE, + ACTIONS(2371), 1, + anon_sym_LPAREN, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_EQ, ACTIONS(2431), 1, + anon_sym_RBRACK, + STATE(1474), 1, + sym_delim_token_tree, + [36191] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2379), 1, + anon_sym_LBRACE, + ACTIONS(2381), 1, + anon_sym_LPAREN, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1153), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [36215] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, anon_sym_LPAREN, - STATE(418), 1, + ACTIONS(2439), 1, + anon_sym_STAR, + STATE(403), 1, sym_type_assertion, - STATE(1157), 1, + STATE(1147), 1, sym_use_list, - ACTIONS(2427), 2, + ACTIONS(2437), 2, sym_identifier, sym_super, - [36067] = 9, + [36241] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2433), 1, - anon_sym_const, - ACTIONS(2435), 1, - anon_sym_enum, - ACTIONS(2437), 1, - anon_sym_fn, - ACTIONS(2439), 1, - anon_sym_interface, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, ACTIONS(2441), 1, - anon_sym_struct, + anon_sym_SEMI, ACTIONS(2443), 1, - anon_sym_type, + anon_sym_COLON, ACTIONS(2445), 1, - anon_sym_use, - [36095] = 7, + anon_sym_throws, + STATE(248), 1, + sym_block, + STATE(1482), 1, + sym_label, + [36269] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2383), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2385), 1, - anon_sym_LPAREN, + ACTIONS(1444), 1, + anon_sym_SQUOTE, ACTIONS(2447), 1, - anon_sym_EQ, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1234), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [36119] = 9, + anon_sym_SEMI, + ACTIONS(2449), 1, + anon_sym_COLON, + ACTIONS(2451), 1, + anon_sym_throws, + STATE(764), 1, + sym_block, + STATE(1471), 1, + sym_label, + [36297] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - anon_sym_SEMI, ACTIONS(2453), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(2455), 1, + anon_sym_COLON, + ACTIONS(2457), 1, anon_sym_throws, - STATE(290), 1, + STATE(241), 1, sym_block, - STATE(1478), 1, + STATE(1482), 1, sym_label, - [36147] = 8, + [36325] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2123), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2431), 1, - anon_sym_LPAREN, + ACTIONS(1444), 1, + anon_sym_SQUOTE, ACTIONS(2459), 1, - anon_sym_STAR, - STATE(412), 1, - sym_type_assertion, - STATE(1150), 1, - sym_use_list, - ACTIONS(2457), 2, - sym_identifier, - sym_super, - [36173] = 9, + anon_sym_SEMI, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(2463), 1, + anon_sym_throws, + STATE(757), 1, + sym_block, + STATE(1471), 1, + sym_label, + [36353] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2461), 1, + ACTIONS(2465), 1, anon_sym_const, - ACTIONS(2463), 1, + ACTIONS(2467), 1, anon_sym_enum, - ACTIONS(2465), 1, + ACTIONS(2469), 1, anon_sym_fn, - ACTIONS(2467), 1, + ACTIONS(2471), 1, anon_sym_interface, - ACTIONS(2469), 1, + ACTIONS(2473), 1, anon_sym_struct, - ACTIONS(2471), 1, + ACTIONS(2475), 1, anon_sym_type, - ACTIONS(2473), 1, + ACTIONS(2477), 1, anon_sym_use, - [36201] = 9, + [36381] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2233), 1, + ACTIONS(2212), 1, + anon_sym_COLON_COLON, + ACTIONS(2481), 1, anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_EQ, - ACTIONS(2361), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, - anon_sym_RBRACK, - ACTIONS(2365), 1, - anon_sym_LBRACE, - ACTIONS(2367), 1, - anon_sym_LPAREN, - STATE(1407), 1, - sym_delim_token_tree, - [36229] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2475), 1, - anon_sym_SEMI, - ACTIONS(2477), 1, - anon_sym_throws, - STATE(746), 1, - sym_block, - STATE(1467), 1, - sym_label, - [36254] = 5, - ACTIONS(2479), 1, - anon_sym_BQUOTE, ACTIONS(2483), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2481), 2, - sym_string_template_fragment, - sym_escape_sequence, - STATE(976), 2, - sym_string_template_substitution, - aux_sym_string_template_repeat1, - [36273] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(79), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, + anon_sym_as, + ACTIONS(2479), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [36402] = 5, ACTIONS(2485), 1, - anon_sym_if, - STATE(1450), 1, - sym_label, - STATE(185), 2, - sym_if_expression, - sym_block, - [36296] = 5, - ACTIONS(2483), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2487), 1, anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2489), 2, - sym_string_template_fragment, - sym_escape_sequence, - STATE(963), 2, - sym_string_template_substitution, - aux_sym_string_template_repeat1, - [36315] = 5, - ACTIONS(2483), 1, + ACTIONS(2489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2491), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, + ACTIONS(2487), 2, sym_string_template_fragment, sym_escape_sequence, - STATE(975), 2, + STATE(976), 2, sym_string_template_substitution, aux_sym_string_template_repeat1, - [36334] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2495), 1, - anon_sym_COMMA, - ACTIONS(2497), 1, - anon_sym_GT, - STATE(1140), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(1333), 2, - anon_sym_QMARK, - anon_sym_as, - [36357] = 7, + [36421] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_if, - STATE(1467), 1, - sym_label, - STATE(327), 2, - sym_if_expression, - sym_block, - [36380] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2501), 1, + ACTIONS(2491), 1, anon_sym_SEMI, - ACTIONS(2503), 1, + ACTIONS(2493), 1, anon_sym_throws, - STATE(243), 1, + STATE(799), 1, sym_block, - STATE(1478), 1, + STATE(1471), 1, sym_label, - [36405] = 8, + [36446] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2505), 1, - anon_sym_SEMI, - ACTIONS(2507), 1, - anon_sym_throws, - STATE(728), 1, - sym_block, - STATE(1467), 1, + ACTIONS(2495), 1, + anon_sym_if, + STATE(1471), 1, sym_label, - [36430] = 8, + STATE(316), 2, + sym_if_expression, + sym_block, + [36469] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2509), 1, + ACTIONS(2497), 1, anon_sym_SEMI, - ACTIONS(2511), 1, + ACTIONS(2499), 1, anon_sym_throws, - STATE(739), 1, + STATE(787), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [36455] = 5, - ACTIONS(2483), 1, + [36494] = 5, + ACTIONS(2489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2513), 1, + ACTIONS(2501), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, + ACTIONS(2503), 2, sym_string_template_fragment, sym_escape_sequence, - STATE(975), 2, + STATE(977), 2, sym_string_template_substitution, aux_sym_string_template_repeat1, - [36474] = 6, + [36513] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1324), 1, - anon_sym_COLON_COLON, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2519), 1, - anon_sym_as, - ACTIONS(2515), 3, - anon_sym_SEMI, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(2505), 1, + sym_identifier, + ACTIONS(2507), 1, anon_sym_COMMA, + ACTIONS(2509), 1, anon_sym_RBRACE, - [36495] = 7, + STATE(1243), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [36536] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2123), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2431), 1, - anon_sym_LPAREN, - STATE(385), 1, - sym_type_assertion, - STATE(1251), 1, - sym_use_list, - ACTIONS(2521), 2, - sym_identifier, - sym_super, - [36518] = 8, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2511), 1, + anon_sym_SEMI, + ACTIONS(2513), 1, + anon_sym_throws, + STATE(760), 1, + sym_block, + STATE(1471), 1, + sym_label, + [36561] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2523), 1, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, anon_sym_SEMI, - ACTIONS(2525), 1, + ACTIONS(2517), 1, anon_sym_throws, - STATE(251), 1, + STATE(771), 1, sym_block, - STATE(1478), 1, + STATE(1471), 1, sym_label, - [36543] = 8, + [36586] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2527), 1, + ACTIONS(2519), 1, anon_sym_SEMI, - ACTIONS(2529), 1, + ACTIONS(2521), 1, anon_sym_throws, - STATE(262), 1, + STATE(244), 1, sym_block, - STATE(1478), 1, + STATE(1482), 1, sym_label, - [36568] = 7, + [36611] = 5, + ACTIONS(2489), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2523), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2525), 2, + sym_string_template_fragment, + sym_escape_sequence, + STATE(964), 2, + sym_string_template_substitution, + aux_sym_string_template_repeat1, + [36630] = 5, + ACTIONS(2489), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2527), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2487), 2, + sym_string_template_fragment, + sym_escape_sequence, + STATE(976), 2, + sym_string_template_substitution, + aux_sym_string_template_repeat1, + [36649] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(1420), 1, - anon_sym_LT2, - STATE(835), 1, - sym_type_arguments, - STATE(1141), 1, - sym_parameters, - ACTIONS(1333), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [36591] = 5, + ACTIONS(2182), 1, + anon_sym_DOT, + ACTIONS(2188), 1, + anon_sym_DOT_DOT, + ACTIONS(2190), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2529), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [36670] = 5, ACTIONS(2531), 1, anon_sym_BQUOTE, ACTIONS(2536), 1, @@ -68169,2046 +68456,2061 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2533), 2, sym_string_template_fragment, sym_escape_sequence, - STATE(975), 2, + STATE(976), 2, sym_string_template_substitution, aux_sym_string_template_repeat1, - [36610] = 5, - ACTIONS(2483), 1, + [36689] = 5, + ACTIONS(2489), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(2539), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, + ACTIONS(2487), 2, sym_string_template_fragment, sym_escape_sequence, - STATE(975), 2, + STATE(976), 2, sym_string_template_substitution, aux_sym_string_template_repeat1, - [36629] = 5, + [36708] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, ACTIONS(2541), 1, + anon_sym_SEMI, + ACTIONS(2543), 1, + anon_sym_throws, + STATE(257), 1, + sym_block, + STATE(1482), 1, + sym_label, + [36733] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(79), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2545), 1, + anon_sym_if, + STATE(1403), 1, + sym_label, + STATE(189), 2, + sym_if_expression, + sym_block, + [36756] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2547), 1, anon_sym_POUND, - STATE(977), 2, + STATE(980), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, ACTIONS(1275), 3, anon_sym_pub, sym_identifier, sym_crate, - [36648] = 5, - ACTIONS(2483), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2544), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, + [36775] = 7, + ACTIONS(3), 1, sym_line_comment, + ACTIONS(5), 1, sym_block_comment, - ACTIONS(2546), 2, - sym_string_template_fragment, - sym_escape_sequence, - STATE(969), 2, - sym_string_template_substitution, - aux_sym_string_template_repeat1, - [36667] = 7, + ACTIONS(2127), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, + anon_sym_LPAREN, + STATE(413), 1, + sym_type_assertion, + STATE(1262), 1, + sym_use_list, + ACTIONS(2550), 2, + sym_identifier, + sym_super, + [36798] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - sym_identifier, - ACTIONS(2550), 1, - anon_sym_COMMA, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, ACTIONS(2552), 1, - anon_sym_RBRACE, - STATE(1121), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [36690] = 7, + anon_sym_SEMI, + ACTIONS(2554), 1, + anon_sym_throws, + STATE(269), 1, + sym_block, + STATE(1482), 1, + sym_label, + [36823] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2505), 1, sym_identifier, - ACTIONS(2554), 1, - anon_sym_COMMA, ACTIONS(2556), 1, + anon_sym_COMMA, + ACTIONS(2558), 1, anon_sym_RBRACE, - STATE(1126), 2, + STATE(1149), 2, sym_field_pattern, sym_remaining_field_pattern, - [36713] = 6, + [36846] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2210), 1, + ACTIONS(1324), 1, anon_sym_COLON_COLON, - ACTIONS(2517), 1, + ACTIONS(2481), 1, anon_sym_DOT, - ACTIONS(2519), 1, + ACTIONS(2483), 1, anon_sym_as, - ACTIONS(2515), 3, + ACTIONS(2479), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [36734] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2178), 1, - anon_sym_DOT, - ACTIONS(2184), 1, - anon_sym_DOT_DOT, - ACTIONS(2186), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36755] = 8, + [36867] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, ACTIONS(2560), 1, anon_sym_SEMI, ACTIONS(2562), 1, anon_sym_throws, - STATE(764), 1, + STATE(276), 1, sym_block, - STATE(1467), 1, + STATE(1482), 1, sym_label, - [36780] = 8, + [36892] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, + ACTIONS(2172), 1, + anon_sym_DOT, ACTIONS(2564), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(2566), 1, - anon_sym_throws, - STATE(291), 1, - sym_block, - STATE(1478), 1, - sym_label, - [36805] = 6, - ACTIONS(3), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(1333), 2, + anon_sym_QMARK, + anon_sym_as, + [36915] = 5, + ACTIONS(2489), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2568), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, sym_line_comment, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_RPAREN, - STATE(1185), 1, - aux_sym_parameters_repeat1, - ACTIONS(2174), 2, - anon_sym_COLON, - anon_sym_PIPE, - [36825] = 7, + ACTIONS(2570), 2, + sym_string_template_fragment, + sym_escape_sequence, + STATE(974), 2, + sym_string_template_substitution, + aux_sym_string_template_repeat1, + [36934] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2572), 1, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(1382), 1, + anon_sym_LT2, + STATE(828), 1, + sym_type_arguments, + STATE(1210), 1, + sym_parameters, + ACTIONS(1333), 2, anon_sym_SEMI, - STATE(293), 1, - sym_block, - STATE(1478), 1, - sym_label, - [36847] = 6, + anon_sym_LBRACE, + [36957] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - sym_identifier, + ACTIONS(2572), 1, + anon_sym_case, ACTIONS(2574), 1, - anon_sym_RBRACE, - STATE(1270), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [36867] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, + anon_sym_default, ACTIONS(2576), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_block, - STATE(1467), 1, - sym_label, - [36889] = 6, + anon_sym_RBRACE, + STATE(1019), 2, + sym_switch_case_arm, + aux_sym_switch_block_repeat1, + [36977] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2578), 1, anon_sym_case, - ACTIONS(2580), 1, + ACTIONS(2581), 1, anon_sym_default, - ACTIONS(2582), 1, + ACTIONS(2584), 1, anon_sym_RBRACE, - STATE(1003), 2, + STATE(990), 2, sym_switch_case_arm, aux_sym_switch_block_repeat1, - [36909] = 7, + [36997] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2584), 1, - anon_sym_SEMI, - STATE(260), 1, - sym_block, - STATE(1478), 1, - sym_label, - [36931] = 7, + ACTIONS(2586), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(1200), 1, + aux_sym_parameters_repeat1, + ACTIONS(2178), 2, + anon_sym_COLON, + anon_sym_PIPE, + [37017] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2592), 1, + anon_sym_DOT, + ACTIONS(2594), 1, + anon_sym_as, + ACTIONS(2590), 3, anon_sym_SEMI, - STATE(248), 1, - sym_block, - STATE(1478), 1, - sym_label, - [36953] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + [37035] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - sym_identifier, - ACTIONS(2588), 1, - anon_sym_RBRACE, - STATE(1270), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [36973] = 7, + ACTIONS(2596), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_parameters_repeat1, + ACTIONS(2178), 2, + anon_sym_COLON, + anon_sym_PIPE, + [37055] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2590), 1, + ACTIONS(2395), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(250), 1, sym_block, - STATE(1467), 1, + STATE(1482), 1, sym_label, - [36995] = 6, + [37077] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2578), 1, - anon_sym_case, - ACTIONS(2580), 1, - anon_sym_default, - ACTIONS(2592), 1, - anon_sym_RBRACE, - STATE(1014), 2, - sym_switch_case_arm, - aux_sym_switch_block_repeat1, - [37015] = 7, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, + ACTIONS(2602), 1, + anon_sym_SEMI, + STATE(267), 1, + sym_block, + STATE(1482), 1, + sym_label, + [37099] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2594), 1, + ACTIONS(2395), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, anon_sym_SEMI, - STATE(766), 1, + STATE(259), 1, sym_block, - STATE(1467), 1, + STATE(1482), 1, sym_label, - [37037] = 7, + [37121] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2596), 1, + ACTIONS(2606), 1, anon_sym_SEMI, - STATE(235), 1, + STATE(207), 1, sym_block, - STATE(1478), 1, + STATE(1482), 1, sym_label, - [37059] = 6, + [37143] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2505), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2608), 1, anon_sym_RBRACE, - STATE(1270), 2, + STATE(1344), 2, sym_field_pattern, sym_remaining_field_pattern, - [37079] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1251), 1, - anon_sym_RPAREN, - ACTIONS(2600), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_parameters_repeat1, - ACTIONS(2174), 2, - anon_sym_COLON, - anon_sym_PIPE, - [37099] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_SEMI, - STATE(205), 1, - sym_block, - STATE(1478), 1, - sym_label, - [37121] = 6, + [37163] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_DOT_DOT, - ACTIONS(2548), 1, + ACTIONS(2505), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2610), 1, anon_sym_RBRACE, - STATE(1270), 2, + STATE(1344), 2, sym_field_pattern, sym_remaining_field_pattern, - [37141] = 7, + [37183] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2606), 1, + ACTIONS(2612), 1, anon_sym_SEMI, - STATE(726), 1, + STATE(766), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37163] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2517), 1, - anon_sym_DOT, - ACTIONS(2519), 1, - anon_sym_as, - ACTIONS(2515), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [37181] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2578), 1, - anon_sym_case, - ACTIONS(2580), 1, - anon_sym_default, - ACTIONS(2608), 1, - anon_sym_RBRACE, - STATE(1012), 2, - sym_switch_case_arm, - aux_sym_switch_block_repeat1, - [37201] = 5, + [37205] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2612), 1, - anon_sym_DOT, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, ACTIONS(2614), 1, - anon_sym_as, - ACTIONS(2610), 3, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [37219] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2616), 1, - anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_RPAREN, - STATE(1232), 1, - aux_sym_parameters_repeat1, - ACTIONS(2174), 2, - anon_sym_COLON, - anon_sym_PIPE, - [37239] = 7, + STATE(272), 1, + sym_block, + STATE(1482), 1, + sym_label, + [37227] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2620), 1, + ACTIONS(2616), 1, anon_sym_SEMI, - STATE(782), 1, + STATE(769), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37261] = 7, + [37249] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2622), 1, - anon_sym_SEMI, - STATE(741), 1, - sym_block, - STATE(1467), 1, - sym_label, - [37283] = 4, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(2505), 1, + sym_identifier, + ACTIONS(2618), 1, + anon_sym_RBRACE, + STATE(1344), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [37269] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2624), 1, - anon_sym_EQ, - ACTIONS(1454), 4, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_GT, - [37299] = 7, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(2505), 1, + sym_identifier, + ACTIONS(2620), 1, + anon_sym_RBRACE, + STATE(1344), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [37289] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2622), 1, anon_sym_SEMI, - STATE(281), 1, + STATE(216), 1, sym_block, - STATE(1478), 1, + STATE(1482), 1, sym_label, - [37321] = 7, + [37311] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(2628), 1, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2624), 1, anon_sym_SEMI, - STATE(253), 1, + STATE(782), 1, sym_block, - STATE(1478), 1, + STATE(1471), 1, sym_label, - [37343] = 7, + [37333] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2630), 1, + ACTIONS(2626), 1, anon_sym_SEMI, - STATE(756), 1, + STATE(789), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37365] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2632), 1, - anon_sym_case, - ACTIONS(2635), 1, - anon_sym_default, - ACTIONS(2638), 1, - anon_sym_RBRACE, - STATE(1012), 2, - sym_switch_case_arm, - aux_sym_switch_block_repeat1, - [37385] = 7, + [37355] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2640), 1, - sym_identifier, - STATE(177), 1, + ACTIONS(2628), 1, + anon_sym_SEMI, + STATE(765), 1, sym_block, - STATE(1450), 1, + STATE(1471), 1, sym_label, - [37407] = 6, + [37377] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2578), 1, + ACTIONS(2572), 1, anon_sym_case, - ACTIONS(2580), 1, + ACTIONS(2574), 1, anon_sym_default, - ACTIONS(2642), 1, + ACTIONS(2630), 1, anon_sym_RBRACE, - STATE(1012), 2, + STATE(1014), 2, sym_switch_case_arm, aux_sym_switch_block_repeat1, - [37427] = 7, + [37397] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2632), 1, anon_sym_SEMI, - STATE(241), 1, + STATE(281), 1, sym_block, - STATE(1478), 1, + STATE(1482), 1, sym_label, - [37449] = 7, + [37419] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - ACTIONS(2646), 1, + ACTIONS(2634), 1, anon_sym_SEMI, - STATE(744), 1, + STATE(796), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37471] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1214), 1, - aux_sym_parameters_repeat1, - ACTIONS(2174), 2, - anon_sym_COLON, - anon_sym_PIPE, - [37491] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_super, - ACTIONS(2650), 1, - sym_identifier, - STATE(412), 1, - sym_type_assertion, - [37510] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2654), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_type_assertion, - ACTIONS(2652), 2, - sym_identifier, - sym_super, - [37527] = 6, + [37441] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(321), 1, + ACTIONS(2636), 1, + anon_sym_SEMI, + STATE(768), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37546] = 6, + [37463] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2656), 1, + ACTIONS(1247), 1, + anon_sym_RPAREN, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2658), 1, + STATE(1174), 1, + aux_sym_parameters_repeat1, + ACTIONS(2178), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2660), 1, - anon_sym_RPAREN, - STATE(1119), 1, - aux_sym_tuple_pattern_repeat1, - [37565] = 6, + [37483] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2662), 1, - sym_identifier, - ACTIONS(2664), 1, - anon_sym_LPAREN, - ACTIONS(2666), 1, - sym_super, - STATE(820), 1, - sym_type_assertion, - [37584] = 6, + ACTIONS(2572), 1, + anon_sym_case, + ACTIONS(2574), 1, + anon_sym_default, + ACTIONS(2640), 1, + anon_sym_RBRACE, + STATE(990), 2, + sym_switch_case_arm, + aux_sym_switch_block_repeat1, + [37503] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(186), 1, + ACTIONS(2642), 1, + sym_identifier, + STATE(192), 1, sym_block, - STATE(1450), 1, + STATE(1403), 1, sym_label, - [37603] = 6, + [37525] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(454), 1, - sym_block, - STATE(1467), 1, - sym_label, - [37622] = 5, + ACTIONS(2644), 1, + anon_sym_EQ, + ACTIONS(1469), 4, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_GT, + [37541] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1201), 1, - anon_sym_DOT_DOT, - ACTIONS(2548), 1, - sym_identifier, - STATE(1270), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [37639] = 3, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + ACTIONS(2395), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + anon_sym_SEMI, + STATE(288), 1, + sym_block, + STATE(1482), 1, + sym_label, + [37563] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2003), 4, - anon_sym_SQUOTE, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - [37652] = 6, + ACTIONS(2481), 1, + anon_sym_DOT, + ACTIONS(2483), 1, + anon_sym_as, + ACTIONS(2479), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [37581] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(438), 1, - sym_block, - STATE(1467), 1, - sym_label, - [37671] = 6, + ACTIONS(2572), 1, + anon_sym_case, + ACTIONS(2574), 1, + anon_sym_default, + ACTIONS(2648), 1, + anon_sym_RBRACE, + STATE(990), 2, + sym_switch_case_arm, + aux_sym_switch_block_repeat1, + [37601] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(324), 1, + ACTIONS(2650), 1, + anon_sym_SEMI, + STATE(751), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37690] = 4, + [37623] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2174), 2, + ACTIONS(1251), 1, + anon_sym_RPAREN, + ACTIONS(2652), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_parameters_repeat1, + ACTIONS(2178), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2668), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37705] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2670), 1, - sym_identifier, - ACTIONS(2672), 1, - sym_super, - STATE(386), 1, - sym_type_assertion, - [37724] = 6, + [37643] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2521), 1, - sym_super, - ACTIONS(2674), 1, + ACTIONS(2654), 1, sym_identifier, - STATE(385), 1, - sym_type_assertion, - [37743] = 3, - ACTIONS(5), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2676), 2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2678), 2, - sym_string_template_fragment, - sym_escape_sequence, - [37756] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - STATE(412), 1, + ACTIONS(2656), 1, + sym_integer_literal, + STATE(390), 1, sym_type_assertion, - ACTIONS(2457), 2, - sym_identifier, - sym_super, - [37773] = 6, + [37662] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2672), 1, + ACTIONS(2383), 1, sym_super, - ACTIONS(2680), 1, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2658), 1, sym_identifier, - STATE(386), 1, + STATE(419), 1, sym_type_assertion, - [37792] = 6, + [37681] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2521), 1, + ACTIONS(2550), 1, sym_super, - ACTIONS(2682), 1, + ACTIONS(2660), 1, sym_identifier, - STATE(385), 1, + STATE(413), 1, sym_type_assertion, - [37811] = 6, + [37700] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2662), 1, + sym_identifier, + ACTIONS(2664), 1, anon_sym_LPAREN, - ACTIONS(2672), 1, + ACTIONS(2666), 1, sym_super, - ACTIONS(2684), 1, - sym_identifier, - STATE(386), 1, + STATE(845), 1, sym_type_assertion, - [37830] = 6, + [37719] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_super, - ACTIONS(2686), 1, - sym_identifier, - STATE(412), 1, - sym_type_assertion, - [37849] = 6, + ACTIONS(1973), 4, + anon_sym_SQUOTE, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + [37732] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, + ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(432), 1, + STATE(187), 1, sym_block, - STATE(1467), 1, + STATE(1403), 1, sym_label, - [37868] = 4, - ACTIONS(2688), 1, - anon_sym_DQUOTE, - STATE(1096), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 2, + [37751] = 6, + ACTIONS(3), 1, sym_line_comment, + ACTIONS(5), 1, sym_block_comment, - ACTIONS(2690), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [37883] = 6, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(2668), 1, + anon_sym_LT, + STATE(954), 1, + sym_parameters, + STATE(1292), 1, + sym_type_parameters, + [37770] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2182), 1, + anon_sym_DOT, + ACTIONS(2188), 1, + anon_sym_DOT_DOT, + ACTIONS(2190), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [37787] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(323), 1, + STATE(326), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [37902] = 6, + [37806] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(179), 1, + STATE(191), 1, sym_block, - STATE(1450), 1, + STATE(1403), 1, sym_label, - [37921] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2427), 1, - sym_super, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - sym_identifier, - STATE(418), 1, - sym_type_assertion, - [37940] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2694), 1, - sym_identifier, - ACTIONS(2696), 1, - sym_integer_literal, - STATE(400), 1, - sym_type_assertion, - [37959] = 6, + [37825] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_super, - ACTIONS(2698), 1, - sym_identifier, - STATE(412), 1, - sym_type_assertion, - [37978] = 5, + ACTIONS(79), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(179), 1, + sym_block, + STATE(1403), 1, + sym_label, + [37844] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2654), 1, - anon_sym_LPAREN, - STATE(826), 1, - sym_type_assertion, - ACTIONS(2700), 2, - sym_identifier, - sym_super, - [37995] = 6, + ACTIONS(2670), 1, + anon_sym_COMMA, + ACTIONS(2672), 1, + anon_sym_COLON, + ACTIONS(2674), 1, + anon_sym_PIPE, + STATE(1255), 1, + aux_sym_closure_parameters_repeat1, + [37863] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2704), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - STATE(287), 1, - sym_enum_variant_list, - STATE(1330), 1, - sym_type_parameters, - [38014] = 6, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(323), 1, + sym_block, + STATE(1471), 1, + sym_label, + [37882] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(2702), 1, + ACTIONS(2668), 1, anon_sym_LT, - STATE(955), 1, - sym_parameters, - STATE(1329), 1, + ACTIONS(2676), 1, + anon_sym_SEMI, + ACTIONS(2678), 1, + anon_sym_EQ, + STATE(1479), 1, sym_type_parameters, - [38033] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2521), 1, - sym_super, - ACTIONS(2706), 1, - sym_identifier, - STATE(385), 1, - sym_type_assertion, - [38052] = 4, - ACTIONS(2708), 1, + [37901] = 4, + ACTIONS(2680), 1, anon_sym_DQUOTE, - STATE(1088), 1, + STATE(1045), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 2, + ACTIONS(2682), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [38067] = 6, + [37916] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1306), 1, + ACTIONS(2684), 1, + anon_sym_SEMI, + ACTIONS(2686), 1, + anon_sym_EQ, + ACTIONS(2688), 1, + anon_sym_COLON, + ACTIONS(2690), 1, + anon_sym_PIPE, + [37935] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(910), 1, + STATE(182), 1, sym_block, - STATE(1476), 1, + STATE(1403), 1, sym_label, - [38086] = 4, + [37954] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2712), 1, - anon_sym_EQ, - ACTIONS(2714), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RPAREN, - [38101] = 5, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2692), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_declaration_list, + STATE(1266), 1, + sym_type_parameters, + [37973] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2247), 1, - anon_sym_POUND, - ACTIONS(2716), 1, - sym_identifier, - STATE(977), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38118] = 6, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_enum_variant_list, + STATE(1333), 1, + sym_type_parameters, + [37992] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(192), 1, + STATE(777), 1, sym_block, - STATE(1450), 1, + STATE(1471), 1, sym_label, - [38137] = 6, + [38011] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2521), 1, + ACTIONS(2550), 1, sym_super, - ACTIONS(2718), 1, + ACTIONS(2696), 1, sym_identifier, - STATE(385), 1, + STATE(413), 1, sym_type_assertion, - [38156] = 6, + [38030] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, + ACTIONS(1306), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(752), 1, + STATE(917), 1, sym_block, - STATE(1467), 1, + STATE(1480), 1, sym_label, - [38175] = 4, - ACTIONS(2720), 1, + [38049] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2383), 1, + sym_super, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2698), 1, + sym_identifier, + STATE(419), 1, + sym_type_assertion, + [38068] = 4, + ACTIONS(2700), 1, anon_sym_DQUOTE, - STATE(1088), 1, + STATE(1091), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 2, + ACTIONS(2702), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [38190] = 6, + [38083] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(1467), 1, - sym_label, - [38209] = 5, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2704), 1, + anon_sym_COMMA, + ACTIONS(2706), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_tuple_pattern_repeat1, + [38102] = 4, + ACTIONS(2708), 1, + anon_sym_DQUOTE, + STATE(1058), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2710), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [38117] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, STATE(386), 1, sym_type_assertion, - ACTIONS(2672), 2, + ACTIONS(2712), 2, sym_identifier, sym_super, - [38226] = 6, + [38134] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2714), 1, + anon_sym_SEMI, + ACTIONS(2716), 1, + anon_sym_EQ, + STATE(1449), 1, + sym_type_parameters, + [38153] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_COMMA, + ACTIONS(2720), 1, + anon_sym_RBRACK, + STATE(1165), 1, + aux_sym_slice_pattern_repeat1, + [38172] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2724), 1, anon_sym_LPAREN, - ACTIONS(2521), 1, - sym_super, - ACTIONS(2722), 1, - sym_identifier, - STATE(385), 1, + STATE(832), 1, sym_type_assertion, - [38245] = 6, + ACTIONS(2722), 2, + sym_identifier, + sym_super, + [38189] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(177), 1, - sym_block, - STATE(1450), 1, - sym_label, - [38264] = 6, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2712), 1, + sym_super, + ACTIONS(2726), 1, + sym_identifier, + STATE(386), 1, + sym_type_assertion, + [38208] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(300), 1, + STATE(310), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [38283] = 6, + [38227] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(301), 1, + STATE(317), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [38302] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2664), 1, - anon_sym_LPAREN, - ACTIONS(2724), 1, - sym_identifier, - ACTIONS(2726), 1, - sym_super, - STATE(825), 1, - sym_type_assertion, - [38321] = 6, + [38246] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(190), 1, + ACTIONS(2395), 1, + anon_sym_LBRACE, + STATE(278), 1, sym_block, - STATE(1450), 1, + STATE(1482), 1, sym_label, - [38340] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2178), 1, - anon_sym_DOT, - ACTIONS(2184), 1, - anon_sym_DOT_DOT, - ACTIONS(2186), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [38357] = 6, + [38265] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2728), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - STATE(753), 1, - sym_enum_variant_list, - STATE(1268), 1, - sym_type_parameters, - [38376] = 6, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(1471), 1, + sym_label, + STATE(1492), 1, + sym_block, + [38284] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(191), 1, + STATE(329), 1, sym_block, - STATE(1450), 1, + STATE(1471), 1, sym_label, - [38395] = 6, + [38303] = 4, + ACTIONS(2728), 1, + anon_sym_DQUOTE, + STATE(1091), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2702), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [38318] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + sym_super, ACTIONS(2730), 1, - anon_sym_LBRACE, - STATE(762), 1, - sym_declaration_list, - STATE(1269), 1, - sym_type_parameters, - [38414] = 6, + sym_identifier, + STATE(413), 1, + sym_type_assertion, + [38337] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(182), 1, - sym_block, - STATE(1450), 1, - sym_label, - [38433] = 6, + ACTIONS(2724), 1, + anon_sym_LPAREN, + STATE(844), 1, + sym_type_assertion, + ACTIONS(2732), 2, + sym_identifier, + sym_super, + [38354] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(176), 1, + STATE(304), 1, sym_block, - STATE(1450), 1, + STATE(1471), 1, sym_label, - [38452] = 6, + [38373] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2732), 1, - anon_sym_SEMI, + ACTIONS(2383), 1, + sym_super, + ACTIONS(2387), 1, + anon_sym_LPAREN, ACTIONS(2734), 1, - anon_sym_EQ, - STATE(1375), 1, - sym_type_parameters, - [38471] = 6, + sym_identifier, + STATE(419), 1, + sym_type_assertion, + [38392] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(2736), 1, - anon_sym_SEMI, - ACTIONS(2738), 1, - anon_sym_EQ, - ACTIONS(2740), 1, + ACTIONS(2178), 2, anon_sym_COLON, - [38490] = 6, + anon_sym_PIPE, + ACTIONS(2736), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38407] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2702), 1, - anon_sym_LT, - STATE(946), 1, - sym_parameters, - STATE(1287), 1, - sym_type_parameters, - [38509] = 6, + ACTIONS(2437), 1, + sym_super, + ACTIONS(2738), 1, + sym_identifier, + STATE(403), 1, + sym_type_assertion, + [38426] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(79), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(184), 1, + sym_block, + STATE(1403), 1, + sym_label, + [38445] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(308), 1, + STATE(438), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [38528] = 6, + [38464] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2724), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_super, - ACTIONS(2742), 1, - sym_identifier, - STATE(412), 1, + STATE(842), 1, sym_type_assertion, - [38547] = 6, + ACTIONS(2740), 2, + sym_identifier, + sym_super, + [38481] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2730), 1, + ACTIONS(79), 1, anon_sym_LBRACE, - STATE(798), 1, - sym_declaration_list, - STATE(1294), 1, - sym_type_parameters, - [38566] = 6, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(195), 1, + sym_block, + STATE(1403), 1, + sym_label, + [38500] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, + ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(1459), 1, + STATE(183), 1, sym_block, - STATE(1467), 1, + STATE(1403), 1, sym_label, - [38585] = 4, - ACTIONS(2744), 1, - anon_sym_DQUOTE, - STATE(1049), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 2, + [38519] = 6, + ACTIONS(3), 1, sym_line_comment, + ACTIONS(5), 1, sym_block_comment, - ACTIONS(2746), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [38600] = 6, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2712), 1, + sym_super, + ACTIONS(2742), 1, + sym_identifier, + STATE(386), 1, + sym_type_assertion, + [38538] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(317), 1, + STATE(301), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [38619] = 6, + [38557] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(2668), 1, anon_sym_LT, - ACTIONS(2748), 1, - anon_sym_SEMI, - ACTIONS(2750), 1, - anon_sym_EQ, - STATE(1457), 1, + STATE(959), 1, + sym_parameters, + STATE(1301), 1, sym_type_parameters, - [38638] = 6, + [38576] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2728), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - STATE(799), 1, - sym_enum_variant_list, - STATE(1292), 1, - sym_type_parameters, - [38657] = 5, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(444), 1, + sym_block, + STATE(1471), 1, + sym_label, + [38595] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2654), 1, + ACTIONS(2383), 1, + sym_super, + ACTIONS(2387), 1, anon_sym_LPAREN, - STATE(828), 1, - sym_type_assertion, - ACTIONS(2752), 2, + ACTIONS(2744), 1, sym_identifier, - sym_super, - [38674] = 6, + STATE(419), 1, + sym_type_assertion, + [38614] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(316), 1, + STATE(315), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [38693] = 4, + [38633] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2174), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2754), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38708] = 6, + ACTIONS(2664), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + sym_identifier, + ACTIONS(2748), 1, + sym_super, + STATE(831), 1, + sym_type_assertion, + [38652] = 3, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2750), 2, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2752), 2, + sym_string_template_fragment, + sym_escape_sequence, + [38665] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(2702), 1, - anon_sym_LT, - STATE(949), 1, - sym_parameters, - STATE(1275), 1, - sym_type_parameters, - [38727] = 6, + ACTIONS(79), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(177), 1, + sym_block, + STATE(1403), 1, + sym_label, + [38684] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, + ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(307), 1, + STATE(188), 1, sym_block, - STATE(1467), 1, + STATE(1403), 1, sym_label, - [38746] = 6, + [38703] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2664), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + sym_identifier, + ACTIONS(2756), 1, + sym_super, + STATE(825), 1, + sym_type_assertion, + [38722] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(170), 1, + STATE(175), 1, sym_block, - STATE(1450), 1, + STATE(1403), 1, sym_label, - [38765] = 4, - ACTIONS(2756), 1, - anon_sym_DQUOTE, - STATE(1088), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 2, + [38741] = 5, + ACTIONS(3), 1, sym_line_comment, + ACTIONS(5), 1, sym_block_comment, + ACTIONS(2724), 1, + anon_sym_LPAREN, + STATE(847), 1, + sym_type_assertion, ACTIONS(2758), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [38780] = 6, + sym_identifier, + sym_super, + [38758] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(2761), 1, - anon_sym_SEMI, - ACTIONS(2763), 1, - anon_sym_EQ, - ACTIONS(2765), 1, - anon_sym_COLON, - [38799] = 6, + ACTIONS(2387), 1, + anon_sym_LPAREN, + STATE(419), 1, + sym_type_assertion, + ACTIONS(2383), 2, + sym_identifier, + sym_super, + [38775] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - ACTIONS(2377), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - STATE(278), 1, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(308), 1, sym_block, - STATE(1478), 1, + STATE(1471), 1, sym_label, - [38818] = 6, + [38794] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2712), 1, sym_super, - ACTIONS(2767), 1, + ACTIONS(2760), 1, sym_identifier, - STATE(412), 1, + STATE(386), 1, sym_type_assertion, - [38837] = 6, + [38813] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(2664), 1, anon_sym_LPAREN, - ACTIONS(2672), 1, - sym_super, - ACTIONS(2769), 1, + ACTIONS(2762), 1, sym_identifier, - STATE(386), 1, + ACTIONS(2764), 1, + sym_super, + STATE(837), 1, sym_type_assertion, - [38856] = 6, + [38832] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, - anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - STATE(232), 1, - sym_declaration_list, - STATE(1347), 1, - sym_type_parameters, - [38875] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(2773), 1, - anon_sym_COMMA, - ACTIONS(2775), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_slice_pattern_repeat1, - [38894] = 6, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(313), 1, + sym_block, + STATE(1471), 1, + sym_label, + [38851] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, + ACTIONS(2668), 1, anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(2766), 1, anon_sym_LBRACE, - STATE(234), 1, + STATE(283), 1, sym_declaration_list, - STATE(1288), 1, + STATE(1295), 1, sym_type_parameters, - [38913] = 4, - ACTIONS(2777), 1, + [38870] = 4, + ACTIONS(2768), 1, anon_sym_DQUOTE, - STATE(1088), 1, + STATE(1114), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 2, + ACTIONS(2770), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [38928] = 6, + [38885] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(2702), 1, + ACTIONS(2668), 1, anon_sym_LT, - STATE(951), 1, - sym_parameters, - STATE(1331), 1, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_enum_variant_list, + STATE(1276), 1, sym_type_parameters, - [38947] = 6, + [38904] = 4, + ACTIONS(2774), 1, + anon_sym_DQUOTE, + STATE(1091), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2776), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [38919] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2427), 1, - sym_super, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2779), 1, + ACTIONS(1203), 1, + anon_sym_DOT_DOT, + ACTIONS(2505), 1, sym_identifier, - STATE(418), 1, - sym_type_assertion, - [38966] = 6, + STATE(1344), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [38936] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2702), 1, + ACTIONS(2668), 1, anon_sym_LT, - ACTIONS(2704), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(756), 1, sym_enum_variant_list, - STATE(1338), 1, + STATE(1296), 1, sym_type_parameters, - [38985] = 6, + [38955] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(180), 1, + STATE(178), 1, sym_block, - STATE(1450), 1, + STATE(1403), 1, sym_label, - [39004] = 4, - ACTIONS(2781), 1, - anon_sym_DQUOTE, - STATE(1056), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 2, + [38974] = 4, + ACTIONS(3), 1, sym_line_comment, + ACTIONS(5), 1, sym_block_comment, - ACTIONS(2783), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [39019] = 5, + ACTIONS(2178), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2779), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38989] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2654), 1, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2781), 1, + anon_sym_SEMI, + ACTIONS(2783), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + anon_sym_COLON, + [39008] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1377), 1, anon_sym_LPAREN, - STATE(838), 1, - sym_type_assertion, - ACTIONS(2785), 2, - sym_identifier, - sym_super, - [39036] = 6, + ACTIONS(2668), 1, + anon_sym_LT, + STATE(960), 1, + sym_parameters, + STATE(1277), 1, + sym_type_parameters, + [39027] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, + ACTIONS(316), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + anon_sym_SQUOTE, + STATE(1398), 1, + sym_block, + STATE(1471), 1, + sym_label, + [39046] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2387), 1, anon_sym_LPAREN, - ACTIONS(2672), 1, + ACTIONS(2712), 1, sym_super, ACTIONS(2787), 1, sym_identifier, STATE(386), 1, sym_type_assertion, - [39055] = 6, + [39065] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2383), 1, sym_super, + ACTIONS(2387), 1, + anon_sym_LPAREN, ACTIONS(2789), 1, sym_identifier, - STATE(412), 1, + STATE(419), 1, sym_type_assertion, - [39074] = 6, + [39084] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(310), 1, + STATE(324), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [39093] = 6, + [39103] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(2668), 1, + anon_sym_LT, + STATE(950), 1, + sym_parameters, + STATE(1275), 1, + sym_type_parameters, + [39122] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2692), 1, + anon_sym_LBRACE, + STATE(745), 1, + sym_declaration_list, + STATE(1298), 1, + sym_type_parameters, + [39141] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + sym_super, ACTIONS(2791), 1, - anon_sym_COMMA, + sym_identifier, + STATE(413), 1, + sym_type_assertion, + [39160] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, ACTIONS(2793), 1, - anon_sym_COLON, - ACTIONS(2795), 1, + anon_sym_EQ, + ACTIONS(2795), 3, + anon_sym_COMMA, anon_sym_PIPE, - STATE(1197), 1, - aux_sym_closure_parameters_repeat1, - [39112] = 6, + anon_sym_RPAREN, + [39175] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(316), 1, + ACTIONS(79), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(1467), 1, - sym_label, - STATE(1488), 1, + STATE(192), 1, sym_block, - [39131] = 6, + STATE(1403), 1, + sym_label, + [39194] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2664), 1, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_enum_variant_list, + STATE(1273), 1, + sym_type_parameters, + [39213] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2668), 1, + anon_sym_LT, + ACTIONS(2766), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_declaration_list, + STATE(1285), 1, + sym_type_parameters, + [39232] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2387), 1, anon_sym_LPAREN, + ACTIONS(2712), 1, + sym_super, ACTIONS(2797), 1, sym_identifier, - ACTIONS(2799), 1, - sym_super, - STATE(841), 1, + STATE(386), 1, sym_type_assertion, - [39150] = 6, + [39251] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, + ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(184), 1, + STATE(320), 1, sym_block, - STATE(1450), 1, + STATE(1471), 1, sym_label, - [39169] = 6, + [39270] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(79), 1, - anon_sym_LBRACE, - ACTIONS(1468), 1, - anon_sym_SQUOTE, - STATE(175), 1, - sym_block, - STATE(1450), 1, - sym_label, - [39188] = 6, + ACTIONS(2251), 1, + anon_sym_POUND, + ACTIONS(2799), 1, + sym_identifier, + STATE(980), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39287] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(316), 1, anon_sym_LBRACE, - ACTIONS(1468), 1, + ACTIONS(1444), 1, anon_sym_SQUOTE, - STATE(312), 1, + STATE(460), 1, sym_block, - STATE(1467), 1, + STATE(1471), 1, sym_label, - [39207] = 6, + [39306] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2664), 1, + ACTIONS(2387), 1, anon_sym_LPAREN, + ACTIONS(2550), 1, + sym_super, ACTIONS(2801), 1, sym_identifier, + STATE(413), 1, + sym_type_assertion, + [39325] = 4, ACTIONS(2803), 1, + anon_sym_DQUOTE, + STATE(1091), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2702), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [39340] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2383), 1, sym_super, - STATE(824), 1, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2805), 1, + sym_identifier, + STATE(419), 1, sym_type_assertion, - [39226] = 3, + [39359] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2805), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [39238] = 5, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2437), 1, + sym_super, + ACTIONS(2807), 1, + sym_identifier, + STATE(403), 1, + sym_type_assertion, + [39378] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(2807), 1, - anon_sym_COMMA, - STATE(1114), 1, - aux_sym_array_expression_repeat1, - [39254] = 5, + ACTIONS(1382), 1, + anon_sym_LT2, + ACTIONS(2809), 1, + anon_sym_DOT, + STATE(843), 1, + sym_type_arguments, + [39394] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(2810), 1, + ACTIONS(2811), 1, anon_sym_COMMA, - ACTIONS(2812), 1, - anon_sym_in, - [39270] = 5, + ACTIONS(2814), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [39410] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2771), 1, + ACTIONS(2766), 1, anon_sym_LBRACE, - ACTIONS(2814), 1, + ACTIONS(2816), 1, anon_sym_SEMI, - STATE(238), 1, + STATE(295), 1, sym_declaration_list, - [39286] = 5, + [39426] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_GT, ACTIONS(2820), 1, - anon_sym_as, - [39302] = 5, + anon_sym_COLON, + ACTIONS(2818), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [39440] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1271), 1, - anon_sym_RBRACK, ACTIONS(2822), 1, - anon_sym_COMMA, - STATE(1190), 1, - aux_sym_slice_pattern_repeat1, - [39318] = 5, + anon_sym_AMP_AMP, + ACTIONS(1983), 2, + anon_sym_SQUOTE, + anon_sym_LBRACE, + [39454] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1241), 1, - anon_sym_RPAREN, + ACTIONS(2285), 1, + anon_sym_RBRACE, ACTIONS(2824), 1, anon_sym_COMMA, - STATE(1199), 1, - aux_sym_tuple_pattern_repeat1, - [39334] = 4, + STATE(1124), 1, + aux_sym_field_declaration_list_repeat1, + [39470] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2828), 1, - anon_sym_COLON, - ACTIONS(2826), 2, - anon_sym_COMMA, + ACTIONS(2299), 1, anon_sym_RBRACE, - [39348] = 5, + ACTIONS(2826), 1, + anon_sym_COMMA, + STATE(1252), 1, + aux_sym_field_initializer_list_repeat1, + [39486] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2830), 1, + ACTIONS(2828), 1, anon_sym_COMMA, - ACTIONS(2832), 1, + ACTIONS(2831), 1, anon_sym_RBRACE, - STATE(1200), 1, - aux_sym_struct_pattern_repeat1, - [39364] = 4, + STATE(1124), 1, + aux_sym_field_declaration_list_repeat1, + [39502] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2793), 1, - anon_sym_COLON, - ACTIONS(2834), 2, + ACTIONS(2833), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PIPE, - [39378] = 5, + anon_sym_RBRACE, + [39514] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2834), 1, - anon_sym_PIPE, - ACTIONS(2836), 1, + ACTIONS(2835), 1, anon_sym_COMMA, - STATE(1123), 1, - aux_sym_closure_parameters_repeat1, - [39394] = 4, + ACTIONS(2837), 1, + anon_sym_RBRACE, + STATE(1220), 1, + aux_sym_enum_variant_list_repeat2, + [39530] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2839), 1, - anon_sym_AMP_AMP, - ACTIONS(1989), 2, - anon_sym_SQUOTE, - anon_sym_LBRACE, - [39408] = 4, + ACTIONS(2839), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [39542] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2839), 1, - anon_sym_AMP_AMP, - ACTIONS(2841), 2, - anon_sym_SQUOTE, - anon_sym_LBRACE, - [39422] = 5, + ACTIONS(2841), 1, + anon_sym_EQ, + ACTIONS(2843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [39556] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2843), 1, - anon_sym_COMMA, + ACTIONS(2766), 1, + anon_sym_LBRACE, ACTIONS(2845), 1, - anon_sym_RBRACE, - STATE(1202), 1, - aux_sym_struct_pattern_repeat1, - [39438] = 5, + anon_sym_SEMI, + STATE(218), 1, + sym_declaration_list, + [39572] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2235), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2847), 1, anon_sym_COMMA, - ACTIONS(2237), 1, - anon_sym_GT, - STATE(1138), 1, - aux_sym_type_parameters_repeat1, - [39454] = 5, + STATE(1154), 1, + aux_sym_enum_variant_list_repeat2, + [39588] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2495), 1, + ACTIONS(2849), 1, + anon_sym_EQ, + ACTIONS(2851), 2, anon_sym_COMMA, - ACTIONS(2497), 1, - anon_sym_GT, - STATE(1140), 1, - aux_sym_type_parameters_repeat1, - [39470] = 5, + anon_sym_RBRACE, + [39602] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, + ACTIONS(2337), 1, + anon_sym_RBRACE, ACTIONS(2847), 1, anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RBRACE, - STATE(1205), 1, + STATE(1150), 1, aux_sym_enum_variant_list_repeat2, - [39486] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2851), 1, - anon_sym_LBRACE, - ACTIONS(1333), 2, - anon_sym_QMARK, - anon_sym_RPAREN, - [39500] = 4, + [39618] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2853), 1, - anon_sym_LBRACE, - ACTIONS(1333), 2, - anon_sym_QMARK, - anon_sym_RPAREN, - [39514] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1413), 1, - anon_sym_LBRACE, + anon_sym_COMMA, ACTIONS(2855), 1, - anon_sym_DOT, - STATE(427), 1, - sym_field_initializer_list, - [39530] = 5, + anon_sym_GT, + STATE(1223), 1, + aux_sym_type_arguments_repeat1, + [39634] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, - anon_sym_LT2, - ACTIONS(2857), 1, - anon_sym_LBRACE, - STATE(835), 1, - sym_type_arguments, - [39546] = 5, + ACTIONS(2857), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + [39646] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -70217,1848 +70519,1915 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(2861), 1, anon_sym_GT, - STATE(1184), 1, - aux_sym_type_arguments_repeat1, - [39562] = 5, + ACTIONS(2863), 1, + anon_sym_as, + [39662] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(2863), 1, + ACTIONS(2865), 3, anon_sym_COMMA, - ACTIONS(2865), 1, - anon_sym_in, - [39578] = 5, + anon_sym_PIPE, + anon_sym_RPAREN, + [39674] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2791), 1, - anon_sym_COMMA, - ACTIONS(2867), 1, + ACTIONS(23), 1, anon_sym_PIPE, - STATE(1197), 1, - aux_sym_closure_parameters_repeat1, - [39594] = 5, + ACTIONS(2867), 1, + anon_sym_move, + STATE(58), 1, + sym_closure_parameters, + [39690] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(2869), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(2871), 1, anon_sym_GT, - ACTIONS(2873), 1, - sym_metavariable, - [39610] = 5, + STATE(1178), 1, + aux_sym_type_parameters_repeat1, + [39706] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2871), 1, - anon_sym_GT, - ACTIONS(2875), 1, + ACTIONS(2608), 1, + anon_sym_RBRACE, + ACTIONS(2873), 1, anon_sym_COMMA, - STATE(1217), 1, - aux_sym_type_parameters_repeat1, - [39626] = 5, + STATE(1168), 1, + aux_sym_struct_pattern_repeat1, + [39722] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2873), 1, - sym_metavariable, - ACTIONS(2877), 1, - anon_sym_GT, - [39642] = 5, + ACTIONS(2875), 1, + anon_sym_COMMA, + ACTIONS(2878), 1, + anon_sym_PIPE, + STATE(1140), 1, + aux_sym_closure_parameters_repeat1, + [39738] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2877), 1, + ACTIONS(2871), 1, anon_sym_GT, - ACTIONS(2879), 1, - anon_sym_COMMA, - STATE(1217), 1, - aux_sym_type_parameters_repeat1, - [39658] = 4, + ACTIONS(2880), 1, + sym_identifier, + ACTIONS(2882), 1, + sym_metavariable, + [39754] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2881), 1, - anon_sym_DASH_GT, - ACTIONS(1373), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [39672] = 5, + ACTIONS(2220), 1, + anon_sym_RBRACE, + ACTIONS(2884), 1, + anon_sym_COMMA, + STATE(1181), 1, + aux_sym_map_expression_repeat1, + [39770] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2883), 1, - anon_sym_SEMI, - STATE(208), 1, - sym_declaration_list, - [39688] = 4, + ACTIONS(2886), 1, + anon_sym_COMMA, + ACTIONS(2888), 1, + anon_sym_RBRACE, + STATE(1123), 1, + aux_sym_field_initializer_list_repeat1, + [39786] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2885), 1, - anon_sym_DASH_GT, - ACTIONS(1401), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [39702] = 4, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(2890), 1, + anon_sym_COMMA, + STATE(1168), 1, + aux_sym_struct_pattern_repeat1, + [39802] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2887), 1, - anon_sym_DASH_GT, - ACTIONS(1391), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [39716] = 5, + ACTIONS(2672), 1, + anon_sym_COLON, + ACTIONS(2878), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [39816] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2889), 1, - anon_sym_loop, - ACTIONS(2891), 1, - anon_sym_while, - ACTIONS(2893), 1, - anon_sym_LBRACE, - [39732] = 5, + ACTIONS(23), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_move, + STATE(76), 1, + sym_closure_parameters, + [39832] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2895), 1, + ACTIONS(2894), 3, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2897), 1, anon_sym_RBRACE, - STATE(1221), 1, - aux_sym_field_declaration_list_repeat1, - [39748] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2899), 1, - anon_sym_loop, - ACTIONS(2901), 1, - anon_sym_while, - ACTIONS(2903), 1, - anon_sym_LBRACE, - [39764] = 5, + [39844] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1413), 1, - anon_sym_LBRACE, - ACTIONS(2905), 1, - anon_sym_DOT, - STATE(427), 1, - sym_field_initializer_list, - [39780] = 3, + ACTIONS(2896), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + [39856] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2907), 3, - anon_sym_SEMI, + ACTIONS(2898), 1, anon_sym_COMMA, + ACTIONS(2900), 1, anon_sym_RBRACE, - [39792] = 3, + STATE(1144), 1, + aux_sym_struct_pattern_repeat1, + [39872] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2909), 3, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2287), 1, anon_sym_RBRACE, - [39804] = 3, + ACTIONS(2902), 1, + anon_sym_COMMA, + STATE(1154), 1, + aux_sym_enum_variant_list_repeat2, + [39888] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2911), 3, + ACTIONS(2904), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - [39816] = 3, + [39900] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2913), 3, - anon_sym_EQ, + ACTIONS(2908), 1, + anon_sym_COLON, + ACTIONS(2906), 2, anon_sym_COMMA, anon_sym_RBRACE, - [39828] = 3, + [39914] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2915), 3, + ACTIONS(2910), 1, anon_sym_EQ, + ACTIONS(2912), 2, anon_sym_COMMA, anon_sym_RBRACE, - [39840] = 3, + [39928] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2917), 3, - anon_sym_SEMI, + ACTIONS(2914), 1, anon_sym_COMMA, + ACTIONS(2917), 1, anon_sym_RBRACE, - [39852] = 3, + STATE(1154), 1, + aux_sym_enum_variant_list_repeat2, + [39944] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2919), 3, - anon_sym_SEMI, + ACTIONS(2919), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [39864] = 3, + ACTIONS(2921), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [39960] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2921), 3, - anon_sym_EQ, + ACTIONS(2923), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [39876] = 3, + ACTIONS(2925), 1, + anon_sym_RPAREN, + STATE(1196), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [39976] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2923), 3, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2135), 1, anon_sym_RBRACE, - [39888] = 5, + ACTIONS(2927), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_use_list_repeat1, + [39992] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2925), 1, - anon_sym_COMMA, - ACTIONS(2927), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [39904] = 3, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(2929), 1, + anon_sym_DOT, + STATE(423), 1, + sym_field_initializer_list, + [40008] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2929), 3, - anon_sym_EQ, + ACTIONS(2239), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [39916] = 3, + ACTIONS(2241), 1, + anon_sym_GT, + STATE(1237), 1, + aux_sym_type_parameters_repeat1, + [40024] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2931), 3, - anon_sym_EQ, + ACTIONS(2931), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [39928] = 3, + ACTIONS(2933), 1, + anon_sym_RPAREN, + STATE(1155), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [40040] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2933), 3, - anon_sym_EQ, + ACTIONS(2935), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [39940] = 3, + [40052] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2935), 3, + ACTIONS(2937), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - [39952] = 3, + [40064] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2937), 3, - anon_sym_SEMI, + ACTIONS(1221), 1, + anon_sym_RPAREN, + ACTIONS(2939), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [39964] = 3, + STATE(1167), 1, + aux_sym_tuple_pattern_repeat1, + [40080] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2939), 3, + ACTIONS(2941), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [39976] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - ACTIONS(2941), 1, - anon_sym_move, - STATE(54), 1, - sym_closure_parameters, - [39992] = 5, + [40092] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2131), 1, - anon_sym_RBRACE, + ACTIONS(1269), 1, + anon_sym_RBRACK, ACTIONS(2943), 1, anon_sym_COMMA, - STATE(1236), 1, - aux_sym_use_list_repeat1, - [40008] = 5, + STATE(1172), 1, + aux_sym_slice_pattern_repeat1, + [40108] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2345), 1, - anon_sym_RBRACE, + ACTIONS(2690), 1, + anon_sym_PIPE, ACTIONS(2945), 1, anon_sym_COMMA, - STATE(1238), 1, - aux_sym_field_initializer_list_repeat1, - [40024] = 5, + ACTIONS(2947), 1, + anon_sym_in, + [40124] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2947), 1, - anon_sym_COMMA, ACTIONS(2949), 1, + anon_sym_COMMA, + ACTIONS(2952), 1, anon_sym_RPAREN, - STATE(1158), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [40040] = 5, + STATE(1167), 1, + aux_sym_tuple_pattern_repeat1, + [40140] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2951), 1, + ACTIONS(2954), 1, anon_sym_COMMA, - ACTIONS(2953), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [40056] = 3, + ACTIONS(2957), 1, + anon_sym_RBRACE, + STATE(1168), 1, + aux_sym_struct_pattern_repeat1, + [40156] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2955), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - [40068] = 5, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_DOT, + STATE(423), 1, + sym_field_initializer_list, + [40172] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2957), 1, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2952), 2, anon_sym_COMMA, - ACTIONS(2960), 1, anon_sym_RPAREN, - STATE(1171), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [40084] = 3, + [40186] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2962), 3, - anon_sym_EQ, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2961), 2, anon_sym_COMMA, anon_sym_RBRACE, - [40096] = 4, + [40200] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2966), 1, - anon_sym_COLON, - ACTIONS(2964), 2, + ACTIONS(2963), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40110] = 3, + ACTIONS(2966), 1, + anon_sym_RBRACK, + STATE(1172), 1, + aux_sym_slice_pattern_repeat1, + [40216] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2968), 3, + ACTIONS(2968), 1, anon_sym_EQ, + ACTIONS(2970), 2, anon_sym_COMMA, anon_sym_RBRACE, - [40122] = 5, + [40230] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(1245), 1, anon_sym_RPAREN, - STATE(1185), 1, + ACTIONS(2972), 1, + anon_sym_COMMA, + STATE(1175), 1, aux_sym_parameters_repeat1, - [40138] = 5, + [40246] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2970), 1, + ACTIONS(2736), 1, + anon_sym_RPAREN, + ACTIONS(2974), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + STATE(1175), 1, + aux_sym_parameters_repeat1, + [40262] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2355), 1, anon_sym_RBRACE, - STATE(1176), 1, - aux_sym_map_expression_repeat1, - [40154] = 5, + ACTIONS(2977), 1, + anon_sym_COMMA, + STATE(1124), 1, + aux_sym_field_declaration_list_repeat1, + [40278] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2818), 1, + ACTIONS(2880), 1, + sym_identifier, + ACTIONS(2882), 1, + sym_metavariable, + ACTIONS(2979), 1, anon_sym_GT, - ACTIONS(2820), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_COMMA, - [40170] = 5, + [40294] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_RBRACE, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COMMA, - STATE(1114), 1, - aux_sym_array_expression_repeat1, - [40186] = 5, + ACTIONS(2984), 1, + anon_sym_GT, + STATE(1178), 1, + aux_sym_type_parameters_repeat1, + [40310] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(426), 1, - anon_sym_RPAREN, - ACTIONS(1867), 1, - anon_sym_COMMA, - STATE(1255), 1, - aux_sym_arguments_repeat1, - [40202] = 3, + ACTIONS(2880), 1, + sym_identifier, + ACTIONS(2882), 1, + sym_metavariable, + ACTIONS(2986), 1, + anon_sym_GT, + [40326] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2979), 3, + ACTIONS(2988), 3, anon_sym_case, anon_sym_default, anon_sym_RBRACE, - [40214] = 5, + [40338] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - ACTIONS(2981), 1, - anon_sym_move, - STATE(57), 1, - sym_closure_parameters, - [40230] = 4, + ACTIONS(2990), 1, + anon_sym_COMMA, + ACTIONS(2993), 1, + anon_sym_RBRACE, + STATE(1181), 1, + aux_sym_map_expression_repeat1, + [40354] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(829), 1, - anon_sym_COLON, - ACTIONS(2983), 2, + ACTIONS(2995), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [40244] = 5, + anon_sym_RBRACE, + [40366] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, - anon_sym_LT2, - ACTIONS(2985), 1, - anon_sym_DOT, - STATE(830), 1, - sym_type_arguments, - [40260] = 5, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(3000), 1, + anon_sym_GT, + STATE(1183), 1, + aux_sym_type_arguments_repeat1, + [40382] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1316), 1, - anon_sym_GT, - ACTIONS(2987), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_type_arguments_repeat1, - [40276] = 5, + ACTIONS(2822), 1, + anon_sym_AMP_AMP, + ACTIONS(3002), 2, + anon_sym_SQUOTE, + anon_sym_LBRACE, + [40396] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1251), 1, - anon_sym_RPAREN, - ACTIONS(2600), 1, + ACTIONS(3004), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1249), 1, - aux_sym_parameters_repeat1, - [40292] = 5, + anon_sym_RBRACE, + [40408] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1251), 1, - anon_sym_RPAREN, - ACTIONS(2600), 1, + ACTIONS(2359), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_COMMA, - STATE(1248), 1, - aux_sym_parameters_repeat1, - [40308] = 4, + STATE(1154), 1, + aux_sym_enum_variant_list_repeat2, + [40424] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, + ACTIONS(2690), 1, anon_sym_PIPE, - ACTIONS(2989), 2, + ACTIONS(2966), 2, anon_sym_COMMA, anon_sym_RBRACK, - [40322] = 5, + [40438] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2656), 1, + ACTIONS(3008), 3, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2660), 1, - anon_sym_RPAREN, - STATE(1119), 1, - aux_sym_tuple_pattern_repeat1, - [40338] = 5, + anon_sym_RBRACE, + [40450] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - ACTIONS(2991), 1, - anon_sym_move, - STATE(77), 1, - sym_closure_parameters, - [40354] = 5, + ACTIONS(3010), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + [40462] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2989), 1, - anon_sym_RBRACK, - ACTIONS(2993), 1, + ACTIONS(3012), 3, + anon_sym_case, + anon_sym_default, + anon_sym_RBRACE, + [40474] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1249), 1, + anon_sym_RPAREN, + ACTIONS(3014), 1, anon_sym_COMMA, - STATE(1190), 1, - aux_sym_slice_pattern_repeat1, - [40370] = 5, + STATE(1175), 1, + aux_sym_parameters_repeat1, + [40490] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2996), 1, + ACTIONS(426), 1, + anon_sym_RPAREN, + ACTIONS(3016), 1, anon_sym_COMMA, - ACTIONS(2998), 1, + STATE(1194), 1, + aux_sym_arguments_repeat1, + [40506] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3018), 1, + anon_sym_loop, + ACTIONS(3020), 1, + anon_sym_while, + ACTIONS(3022), 1, + anon_sym_LBRACE, + [40522] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1995), 1, anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [40386] = 4, + ACTIONS(3024), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_arguments_repeat1, + [40538] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(3000), 2, + ACTIONS(3027), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - [40400] = 5, + anon_sym_RBRACE, + [40550] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3002), 1, + ACTIONS(3029), 1, anon_sym_COMMA, - ACTIONS(3004), 1, + ACTIONS(3031), 1, anon_sym_RPAREN, - STATE(1171), 1, + STATE(1118), 1, aux_sym_ordered_field_declaration_list_repeat1, - [40416] = 3, + [40566] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3006), 3, - anon_sym_EQ, + ACTIONS(3033), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40428] = 3, + ACTIONS(3035), 1, + anon_sym_RPAREN, + STATE(1219), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [40582] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3008), 3, - anon_sym_EQ, + ACTIONS(1247), 1, + anon_sym_RPAREN, + ACTIONS(2638), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [40440] = 5, + STATE(1174), 1, + aux_sym_parameters_repeat1, + [40598] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3013), 1, - anon_sym_RBRACE, - STATE(1196), 1, - aux_sym_enum_variant_list_repeat2, - [40456] = 5, + ACTIONS(3037), 1, + anon_sym_loop, + ACTIONS(3039), 1, + anon_sym_while, + ACTIONS(3041), 1, + anon_sym_LBRACE, + [40614] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2791), 1, + ACTIONS(1247), 1, + anon_sym_RPAREN, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(3015), 1, - anon_sym_PIPE, - STATE(1123), 1, - aux_sym_closure_parameters_repeat1, - [40472] = 5, + STATE(1175), 1, + aux_sym_parameters_repeat1, + [40630] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3043), 1, + anon_sym_DASH_GT, + ACTIONS(1388), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [40644] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(23), 1, anon_sym_PIPE, - ACTIONS(3017), 1, + ACTIONS(3045), 1, anon_sym_move, - STATE(55), 1, + STATE(66), 1, sym_closure_parameters, - [40488] = 5, + [40660] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3000), 1, - anon_sym_RPAREN, - ACTIONS(3019), 1, + ACTIONS(2313), 1, + anon_sym_RBRACE, + ACTIONS(3047), 1, anon_sym_COMMA, - STATE(1199), 1, - aux_sym_tuple_pattern_repeat1, - [40504] = 5, + STATE(1176), 1, + aux_sym_field_declaration_list_repeat1, + [40676] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2604), 1, - anon_sym_RBRACE, - ACTIONS(3022), 1, - anon_sym_COMMA, - STATE(1244), 1, - aux_sym_struct_pattern_repeat1, - [40520] = 5, + ACTIONS(3049), 1, + anon_sym_DASH_GT, + ACTIONS(1398), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [40690] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2214), 1, - anon_sym_RBRACE, - ACTIONS(3024), 1, + ACTIONS(2704), 1, anon_sym_COMMA, - STATE(1176), 1, - aux_sym_map_expression_repeat1, - [40536] = 5, + ACTIONS(2706), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_tuple_pattern_repeat1, + [40706] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2598), 1, + ACTIONS(2313), 1, anon_sym_RBRACE, - ACTIONS(3026), 1, + ACTIONS(3047), 1, anon_sym_COMMA, - STATE(1244), 1, - aux_sym_struct_pattern_repeat1, - [40552] = 3, + STATE(1124), 1, + aux_sym_field_declaration_list_repeat1, + [40722] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3028), 3, + ACTIONS(3051), 1, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RPAREN, - [40564] = 4, + ACTIONS(3053), 1, + anon_sym_RBRACE, + STATE(1157), 1, + aux_sym_use_list_repeat1, + [40738] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3030), 1, - anon_sym_EQ, - ACTIONS(3032), 2, + ACTIONS(3055), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [40578] = 5, + [40750] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2323), 1, - anon_sym_RBRACE, - ACTIONS(3034), 1, + ACTIONS(3057), 1, anon_sym_COMMA, - STATE(1196), 1, + ACTIONS(3059), 1, + anon_sym_RBRACE, + STATE(1130), 1, aux_sym_enum_variant_list_repeat2, - [40594] = 5, + [40766] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2313), 1, - anon_sym_RBRACE, - ACTIONS(3036), 1, - anon_sym_COMMA, - STATE(1219), 1, - aux_sym_field_declaration_list_repeat1, - [40610] = 5, + ACTIONS(3061), 1, + anon_sym_DASH_GT, + ACTIONS(1404), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [40780] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(1331), 1, anon_sym_LT2, - ACTIONS(3038), 1, + ACTIONS(3063), 1, anon_sym_DOT, - STATE(403), 1, + STATE(400), 1, sym_type_arguments, - [40626] = 5, + [40796] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2323), 1, - anon_sym_RBRACE, - ACTIONS(3034), 1, + ACTIONS(3065), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_enum_variant_list_repeat2, - [40642] = 5, + anon_sym_RBRACE, + [40808] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3040), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, + ACTIONS(2339), 1, anon_sym_RBRACE, - STATE(1167), 1, - aux_sym_field_initializer_list_repeat1, - [40658] = 4, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1186), 1, + aux_sym_enum_variant_list_repeat2, + [40824] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3046), 1, - anon_sym_COLON, - ACTIONS(3044), 2, + ACTIONS(3069), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - [40672] = 5, + [40836] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2319), 1, + ACTIONS(2005), 1, anon_sym_RBRACE, - ACTIONS(3048), 1, + ACTIONS(3071), 1, anon_sym_COMMA, - STATE(1196), 1, - aux_sym_enum_variant_list_repeat2, - [40688] = 3, + STATE(1215), 1, + aux_sym_array_expression_repeat1, + [40852] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3050), 3, - anon_sym_SEMI, + ACTIONS(3074), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - [40700] = 5, + [40864] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(3052), 1, + ACTIONS(3076), 1, anon_sym_SEMI, - STATE(760), 1, + STATE(793), 1, sym_declaration_list, - [40716] = 5, + [40880] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(3054), 1, + ACTIONS(3078), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1249), 1, - aux_sym_parameters_repeat1, - [40732] = 5, + anon_sym_RBRACE, + [40892] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2873), 1, - sym_metavariable, - ACTIONS(3056), 1, - anon_sym_GT, - [40748] = 3, + ACTIONS(3080), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [40908] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3058), 3, - anon_sym_case, - anon_sym_default, + ACTIONS(2339), 1, anon_sym_RBRACE, - [40760] = 5, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1154), 1, + aux_sym_enum_variant_list_repeat2, + [40924] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3060), 1, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(3063), 1, - anon_sym_GT, - STATE(1217), 1, - aux_sym_type_parameters_repeat1, - [40776] = 5, + STATE(1124), 1, + aux_sym_field_declaration_list_repeat1, + [40940] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2329), 1, - anon_sym_RBRACE, - ACTIONS(3065), 1, + ACTIONS(1251), 1, + anon_sym_RPAREN, + ACTIONS(2652), 1, anon_sym_COMMA, - STATE(1219), 1, - aux_sym_field_declaration_list_repeat1, - [40792] = 5, + STATE(1191), 1, + aux_sym_parameters_repeat1, + [40956] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3067), 1, + ACTIONS(1314), 1, + anon_sym_GT, + ACTIONS(3086), 1, anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RBRACE, - STATE(1219), 1, - aux_sym_field_declaration_list_repeat1, - [40808] = 5, + STATE(1183), 1, + aux_sym_type_arguments_repeat1, + [40972] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2873), 1, - sym_metavariable, - ACTIONS(3072), 1, - anon_sym_GT, - [40824] = 5, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(3088), 1, + anon_sym_DOT, + STATE(423), 1, + sym_field_initializer_list, + [40988] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(3074), 1, + ACTIONS(3090), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1219), 1, - aux_sym_field_declaration_list_repeat1, - [40840] = 5, + anon_sym_RBRACE, + [41000] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(3076), 1, + ACTIONS(1251), 1, + anon_sym_RPAREN, + ACTIONS(2652), 1, anon_sym_COMMA, - STATE(1206), 1, - aux_sym_field_declaration_list_repeat1, - [40856] = 5, + STATE(1175), 1, + aux_sym_parameters_repeat1, + [41016] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(3076), 1, + ACTIONS(1300), 1, + anon_sym_GT, + ACTIONS(3092), 1, anon_sym_COMMA, - STATE(1219), 1, - aux_sym_field_declaration_list_repeat1, - [40872] = 5, + STATE(1183), 1, + aux_sym_type_arguments_repeat1, + [41032] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2281), 1, + ACTIONS(2289), 1, anon_sym_RBRACE, - ACTIONS(3074), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - STATE(1218), 1, + STATE(1122), 1, aux_sym_field_declaration_list_repeat1, - [40888] = 5, + [41048] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2317), 1, - anon_sym_RBRACE, - ACTIONS(3078), 1, + ACTIONS(3094), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1211), 1, - aux_sym_enum_variant_list_repeat2, - [40904] = 5, + anon_sym_RBRACE, + [41060] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2317), 1, - anon_sym_RBRACE, - ACTIONS(3078), 1, + ACTIONS(3096), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1196), 1, - aux_sym_enum_variant_list_repeat2, - [40920] = 3, + anon_sym_RBRACE, + [41072] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3080), 3, - anon_sym_SEMI, + ACTIONS(3098), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - [40932] = 5, + [41084] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1214), 1, - aux_sym_parameters_repeat1, - [40948] = 3, + ACTIONS(1382), 1, + anon_sym_LT2, + ACTIONS(3100), 1, + anon_sym_LBRACE, + STATE(828), 1, + sym_type_arguments, + [41100] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3082), 3, - anon_sym_SEMI, + ACTIONS(829), 1, + anon_sym_COLON, + ACTIONS(3102), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [40960] = 5, + anon_sym_GT, + [41114] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(283), 1, - sym_declaration_list, - [40976] = 5, + ACTIONS(2670), 1, + anon_sym_COMMA, + ACTIONS(3104), 1, + anon_sym_PIPE, + STATE(1255), 1, + aux_sym_closure_parameters_repeat1, + [41130] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(3086), 1, - anon_sym_SEMI, - STATE(277), 1, - sym_declaration_list, - [40992] = 5, + ACTIONS(2880), 1, + sym_identifier, + ACTIONS(2882), 1, + sym_metavariable, + ACTIONS(3106), 1, + anon_sym_GT, + [41146] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(2648), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(1249), 1, - aux_sym_parameters_repeat1, - [41008] = 5, + ACTIONS(3110), 1, + anon_sym_RBRACE, + STATE(1206), 1, + aux_sym_field_declaration_list_repeat1, + [41162] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(3088), 1, + ACTIONS(3106), 1, + anon_sym_GT, + ACTIONS(3112), 1, anon_sym_COMMA, - STATE(1196), 1, - aux_sym_enum_variant_list_repeat2, - [41024] = 4, + STATE(1178), 1, + aux_sym_type_parameters_repeat1, + [41178] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3090), 1, - anon_sym_EQ, - ACTIONS(3092), 2, + ACTIONS(3114), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [41038] = 5, + [41190] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1300), 1, - anon_sym_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_type_arguments_repeat1, - [41054] = 5, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, + anon_sym_SEMI, + STATE(759), 1, + sym_declaration_list, + [41206] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3096), 1, + ACTIONS(2564), 1, anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RBRACE, - STATE(1236), 1, - aux_sym_use_list_repeat1, - [41070] = 5, + ACTIONS(2566), 1, + anon_sym_GT, + STATE(1138), 1, + aux_sym_type_parameters_repeat1, + [41222] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1413), 1, + ACTIONS(3118), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, - anon_sym_DOT, - STATE(427), 1, - sym_field_initializer_list, - [41086] = 5, + ACTIONS(1333), 2, + anon_sym_QMARK, + anon_sym_RPAREN, + [41236] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3103), 1, + ACTIONS(428), 1, + anon_sym_RPAREN, + ACTIONS(1907), 1, anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_RBRACE, - STATE(1238), 1, - aux_sym_field_initializer_list_repeat1, - [41102] = 5, + STATE(1194), 1, + aux_sym_arguments_repeat1, + [41252] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3108), 1, + ACTIONS(3120), 1, anon_sym_COMMA, - ACTIONS(3110), 1, + ACTIONS(3122), 1, anon_sym_RBRACE, - STATE(1223), 1, - aux_sym_field_declaration_list_repeat1, - [41118] = 5, + STATE(1139), 1, + aux_sym_struct_pattern_repeat1, + [41268] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3124), 1, + anon_sym_LBRACE, + ACTIONS(1333), 2, + anon_sym_QMARK, + anon_sym_RPAREN, + [41282] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3112), 1, + ACTIONS(3126), 1, anon_sym_COMMA, - ACTIONS(3114), 1, + ACTIONS(3129), 1, anon_sym_RBRACE, - STATE(1166), 1, + STATE(1245), 1, aux_sym_use_list_repeat1, - [41134] = 5, + [41298] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, + ACTIONS(2766), 1, anon_sym_LBRACE, - ACTIONS(3116), 1, + ACTIONS(3131), 1, anon_sym_SEMI, - STATE(780), 1, + STATE(255), 1, sym_declaration_list, - [41150] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3118), 1, - anon_sym_COMMA, - ACTIONS(3120), 1, - anon_sym_RPAREN, - STATE(1193), 1, - aux_sym_ordered_field_declaration_list_repeat1, - [41166] = 3, + [41314] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3122), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - [41178] = 5, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(3133), 1, + anon_sym_SEMI, + STATE(243), 1, + sym_declaration_list, + [41330] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3124), 1, + ACTIONS(3135), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3137), 1, anon_sym_RBRACE, - STATE(1244), 1, - aux_sym_struct_pattern_repeat1, - [41194] = 5, + STATE(1221), 1, + aux_sym_field_declaration_list_repeat1, + [41346] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(3129), 1, + ACTIONS(3139), 1, anon_sym_SEMI, - STATE(795), 1, + STATE(780), 1, sym_declaration_list, - [41210] = 5, + [41362] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(3131), 1, + ACTIONS(3141), 1, anon_sym_SEMI, - STATE(803), 1, + STATE(807), 1, sym_declaration_list, - [41226] = 4, + [41378] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(3133), 2, + ACTIONS(3143), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [41240] = 5, + [41390] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1245), 1, - anon_sym_RPAREN, - ACTIONS(3135), 1, + ACTIONS(3145), 1, anon_sym_COMMA, - STATE(1249), 1, - aux_sym_parameters_repeat1, - [41256] = 5, + ACTIONS(3148), 1, + anon_sym_RBRACE, + STATE(1252), 1, + aux_sym_field_initializer_list_repeat1, + [41406] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2754), 1, - anon_sym_RPAREN, - ACTIONS(3137), 1, + ACTIONS(2586), 1, anon_sym_COMMA, - STATE(1249), 1, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(1200), 1, aux_sym_parameters_repeat1, - [41272] = 5, + [41422] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3140), 1, + ACTIONS(438), 1, + anon_sym_RBRACE, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_GT, - STATE(1250), 1, - aux_sym_type_arguments_repeat1, - [41288] = 3, + STATE(1215), 1, + aux_sym_array_expression_repeat1, + [41438] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3145), 3, - anon_sym_SEMI, + ACTIONS(2670), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [41300] = 5, + ACTIONS(3152), 1, + anon_sym_PIPE, + STATE(1140), 1, + aux_sym_closure_parameters_repeat1, + [41454] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3147), 1, - anon_sym_COMMA, - ACTIONS(3149), 1, + ACTIONS(2861), 1, anon_sym_GT, - STATE(1235), 1, - aux_sym_type_arguments_repeat1, - [41316] = 5, + ACTIONS(2863), 1, + anon_sym_as, + ACTIONS(3154), 1, + anon_sym_COMMA, + [41470] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(422), 1, - anon_sym_RPAREN, - ACTIONS(3151), 1, - anon_sym_COMMA, - STATE(1255), 1, - aux_sym_arguments_repeat1, - [41332] = 5, + ACTIONS(23), 1, + anon_sym_PIPE, + ACTIONS(3156), 1, + anon_sym_move, + STATE(65), 1, + sym_closure_parameters, + [41486] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2616), 1, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(3158), 1, anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_RPAREN, - STATE(1232), 1, - aux_sym_parameters_repeat1, - [41348] = 5, + ACTIONS(3160), 1, + anon_sym_in, + [41502] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1983), 1, - anon_sym_RPAREN, - ACTIONS(3153), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - STATE(1255), 1, - aux_sym_arguments_repeat1, - [41364] = 5, + ACTIONS(3164), 1, + anon_sym_GT, + STATE(1227), 1, + aux_sym_type_arguments_repeat1, + [41518] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3156), 1, + ACTIONS(3168), 1, + anon_sym_COLON, + ACTIONS(3166), 2, anon_sym_COMMA, - ACTIONS(3158), 1, anon_sym_RBRACE, - STATE(1226), 1, - aux_sym_enum_variant_list_repeat2, - [41380] = 3, + [41532] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3099), 2, + ACTIONS(2596), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [41391] = 3, + ACTIONS(2598), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_parameters_repeat1, + [41548] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3160), 2, + ACTIONS(3170), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [41402] = 4, + [41560] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, + ACTIONS(3172), 1, + anon_sym_SEMI, + ACTIONS(3174), 1, anon_sym_PIPE, - ACTIONS(2793), 1, - anon_sym_COLON, - [41415] = 3, + [41573] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3143), 2, + ACTIONS(2878), 2, anon_sym_COMMA, - anon_sym_GT, - [41426] = 4, + anon_sym_PIPE, + [41584] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2383), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(797), 1, + STATE(772), 1, sym_field_declaration_list, - [41439] = 4, + [41597] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3162), 1, - anon_sym_BANG, - ACTIONS(3164), 1, - anon_sym_LBRACK, - [41452] = 3, + ACTIONS(2692), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_declaration_list, + [41610] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3166), 2, - anon_sym_COMMA, - anon_sym_GT, - [41463] = 3, + ACTIONS(3176), 1, + anon_sym_SEMI, + ACTIONS(3178), 1, + anon_sym_EQ, + [41623] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3168), 2, - sym_identifier, - sym_metavariable, - [41474] = 4, + ACTIONS(1331), 1, + anon_sym_LT2, + STATE(471), 1, + sym_type_arguments, + [41636] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - STATE(1090), 1, - sym_string_literal, - [41487] = 4, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(3180), 1, + anon_sym_EQ, + [41649] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1413), 1, - anon_sym_LBRACE, - STATE(427), 1, - sym_field_initializer_list, - [41500] = 4, + ACTIONS(3148), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41660] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - STATE(1144), 1, - sym_parameters, - [41513] = 4, + ACTIONS(3182), 1, + anon_sym_SEMI, + ACTIONS(3184), 1, + anon_sym_EQ, + [41673] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(3186), 1, + anon_sym_SEMI, + ACTIONS(3188), 1, + anon_sym_EQ, + [41686] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2772), 1, anon_sym_LBRACE, - STATE(790), 1, + STATE(224), 1, sym_enum_variant_list, - [41526] = 4, + [41699] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - STATE(801), 1, - sym_declaration_list, - [41539] = 3, + ACTIONS(3190), 1, + sym_identifier, + ACTIONS(3192), 1, + sym_metavariable, + [41712] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3127), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41550] = 3, + ACTIONS(1377), 1, + anon_sym_LPAREN, + STATE(958), 1, + sym_parameters, + [41725] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3170), 2, - sym_identifier, - sym_metavariable, - [41561] = 4, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_enum_variant_list, + [41738] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3172), 1, - anon_sym_BANG, - ACTIONS(3174), 1, - anon_sym_LBRACK, - [41574] = 3, + ACTIONS(1377), 1, + anon_sym_LPAREN, + STATE(949), 1, + sym_parameters, + [41751] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2834), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [41585] = 4, + ACTIONS(3194), 2, + sym_identifier, + sym_metavariable, + [41762] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3176), 1, - anon_sym_SEMI, - ACTIONS(3178), 1, - anon_sym_EQ, - [41598] = 4, + ACTIONS(3196), 1, + anon_sym_BANG, + ACTIONS(3198), 1, + anon_sym_LBRACK, + [41775] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, + ACTIONS(1377), 1, anon_sym_LPAREN, - STATE(947), 1, + STATE(1201), 1, sym_parameters, - [41611] = 4, + [41788] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3180), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_field_declaration_list, - [41624] = 4, + ACTIONS(3200), 2, + sym_identifier, + sym_metavariable, + [41799] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3182), 1, - anon_sym_SEMI, - ACTIONS(3184), 1, - anon_sym_EQ, - [41637] = 4, + ACTIONS(3202), 1, + anon_sym_BANG, + ACTIONS(3204), 1, + anon_sym_LBRACK, + [41812] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(23), 1, anon_sym_PIPE, - STATE(66), 1, + STATE(64), 1, sym_closure_parameters, - [41650] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2754), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41661] = 4, + [41825] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(3186), 1, - anon_sym_EQ, - [41674] = 4, + ACTIONS(3206), 2, + sym_float_literal, + sym_integer_literal, + [41836] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1331), 1, - anon_sym_LT2, - STATE(467), 1, - sym_type_arguments, - [41687] = 3, + ACTIONS(2766), 1, + anon_sym_LBRACE, + STATE(263), 1, + sym_declaration_list, + [41849] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3188), 2, + ACTIONS(3208), 2, sym_identifier, sym_metavariable, - [41698] = 4, + [41860] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - STATE(831), 1, - sym_parameters, - [41711] = 4, + ACTIONS(1331), 1, + anon_sym_LT2, + STATE(532), 1, + sym_type_arguments, + [41873] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3190), 1, - anon_sym_SEMI, - ACTIONS(3193), 1, - anon_sym_PIPE, - [41724] = 3, + ACTIONS(3129), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41884] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3195), 2, - sym_identifier, - sym_metavariable, - [41735] = 4, + ACTIONS(1331), 1, + anon_sym_LT2, + STATE(537), 1, + sym_type_arguments, + [41897] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3197), 1, + ACTIONS(3210), 1, anon_sym_SEMI, - ACTIONS(3199), 1, + ACTIONS(3212), 1, anon_sym_EQ, - [41748] = 4, + [41910] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - STATE(948), 1, - sym_parameters, - [41761] = 4, + ACTIONS(2172), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + anon_sym_COLON_COLON, + [41923] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_declaration_list, - [41774] = 3, + ACTIONS(1377), 1, + anon_sym_LPAREN, + STATE(961), 1, + sym_parameters, + [41936] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3201), 2, - sym_float_literal, - sym_integer_literal, - [41785] = 4, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(55), 1, + sym_closure_parameters, + [41949] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3174), 1, anon_sym_PIPE, - ACTIONS(3203), 1, + ACTIONS(3214), 1, anon_sym_SEMI, - [41798] = 3, + [41962] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2668), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41809] = 4, + ACTIONS(2766), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_declaration_list, + [41975] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2728), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(732), 1, sym_enum_variant_list, - [41822] = 4, + [41988] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3206), 1, - anon_sym_SEMI, - ACTIONS(3208), 1, - anon_sym_EQ, - [41835] = 4, + ACTIONS(95), 1, + anon_sym_DQUOTE, + STATE(1055), 1, + sym_string_literal, + [42001] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2730), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - STATE(770), 1, + STATE(740), 1, sym_declaration_list, - [41848] = 4, + [42014] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1331), 1, - anon_sym_LT2, - STATE(472), 1, - sym_type_arguments, - [41861] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3106), 2, + ACTIONS(793), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [41872] = 4, + anon_sym_GT, + [42025] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1331), 1, - anon_sym_LT2, - STATE(510), 1, - sym_type_arguments, - [41885] = 4, + ACTIONS(3217), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42036] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3210), 1, - anon_sym_SEMI, - ACTIONS(3212), 1, - anon_sym_EQ, - [41898] = 4, + ACTIONS(1377), 1, + anon_sym_LPAREN, + STATE(952), 1, + sym_parameters, + [42049] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2210), 1, - anon_sym_COLON_COLON, - ACTIONS(3214), 1, - anon_sym_DOT, - [41911] = 3, + ACTIONS(3219), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42060] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3216), 2, - anon_sym_const, - sym_mutable_specifier, - [41922] = 3, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(3221), 1, + anon_sym_COLON, + [42073] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41933] = 4, + ACTIONS(3174), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_SEMI, + [42086] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, + ACTIONS(2690), 1, anon_sym_PIPE, - ACTIONS(3218), 1, + ACTIONS(3226), 1, anon_sym_EQ, - [41946] = 4, + [42099] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1331), 1, - anon_sym_LT2, - STATE(453), 1, - sym_type_arguments, - [41959] = 4, + ACTIONS(3002), 1, + anon_sym_RPAREN, + ACTIONS(3228), 1, + anon_sym_AMP_AMP, + [42112] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1331), 1, - anon_sym_LT2, - STATE(521), 1, - sym_type_arguments, - [41972] = 4, + ACTIONS(3230), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42123] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - STATE(68), 1, - sym_closure_parameters, - [41985] = 4, + ACTIONS(1983), 1, + anon_sym_RPAREN, + ACTIONS(3228), 1, + anon_sym_AMP_AMP, + [42136] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3220), 1, - anon_sym_SEMI, - [41998] = 3, + ACTIONS(2861), 1, + anon_sym_GT, + ACTIONS(2863), 1, + anon_sym_as, + [42149] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(805), 2, + ACTIONS(3232), 2, anon_sym_COMMA, - anon_sym_GT, - [42009] = 4, + anon_sym_RBRACE, + [42160] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2873), 1, - sym_metavariable, - [42022] = 4, + ACTIONS(2212), 1, + anon_sym_COLON_COLON, + ACTIONS(3234), 1, + anon_sym_DOT, + [42173] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - STATE(1055), 1, - sym_string_literal, - [42035] = 4, + ACTIONS(2379), 1, + anon_sym_LBRACE, + STATE(741), 1, + sym_field_declaration_list, + [42186] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2658), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_COLON, - [42048] = 3, + ACTIONS(3236), 2, + anon_sym_const, + sym_mutable_specifier, + [42197] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3225), 2, + ACTIONS(2952), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [42059] = 4, + anon_sym_RPAREN, + [42208] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2210), 1, - anon_sym_COLON_COLON, - [42072] = 4, + ACTIONS(1329), 1, + anon_sym_LPAREN, + STATE(377), 1, + sym_parameters, + [42221] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2841), 1, - anon_sym_RPAREN, - ACTIONS(3227), 1, - anon_sym_AMP_AMP, - [42085] = 4, + ACTIONS(3238), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_field_declaration_list, + [42234] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1989), 1, - anon_sym_RPAREN, - ACTIONS(3227), 1, - anon_sym_AMP_AMP, - [42098] = 4, + ACTIONS(3240), 2, + anon_sym_const, + sym_mutable_specifier, + [42245] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3229), 1, + ACTIONS(3242), 1, anon_sym_SEMI, - ACTIONS(3231), 1, + ACTIONS(3244), 1, anon_sym_EQ, - [42111] = 3, + [42258] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3233), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42122] = 3, + ACTIONS(3246), 1, + anon_sym_SEMI, + ACTIONS(3248), 1, + anon_sym_EQ, + [42271] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3235), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42133] = 4, + ACTIONS(3174), 1, + anon_sym_PIPE, + ACTIONS(3250), 1, + anon_sym_SEMI, + [42284] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(66), 1, + sym_closure_parameters, + [42297] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3174), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3253), 1, anon_sym_SEMI, - [42146] = 4, + [42310] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42321] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(1382), 1, + anon_sym_LT2, + STATE(1371), 1, + sym_type_arguments, + [42334] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, + ACTIONS(1331), 1, anon_sym_LT2, - STATE(1487), 1, + STATE(439), 1, sym_type_arguments, - [42159] = 3, + [42347] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(95), 1, + anon_sym_DQUOTE, + STATE(1041), 1, + sym_string_literal, + [42360] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3070), 2, + ACTIONS(2779), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [42170] = 4, + anon_sym_RPAREN, + [42371] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2383), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_field_declaration_list, - [42183] = 4, + ACTIONS(3258), 2, + anon_sym_COMMA, + anon_sym_GT, + [42382] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, @@ -72067,2449 +72436,2423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(76), 1, sym_closure_parameters, - [42196] = 4, + [42395] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3193), 1, - anon_sym_PIPE, - ACTIONS(3240), 1, - anon_sym_SEMI, - [42209] = 3, + ACTIONS(1375), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_field_initializer_list, + [42408] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3063), 2, + ACTIONS(3260), 2, anon_sym_COMMA, anon_sym_GT, - [42220] = 3, + [42419] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3242), 2, + ACTIONS(3000), 2, anon_sym_COMMA, anon_sym_GT, - [42231] = 4, + [42430] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - STATE(54), 1, - sym_closure_parameters, - [42244] = 4, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(739), 1, + sym_enum_variant_list, + [42443] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(23), 1, anon_sym_PIPE, - STATE(77), 1, + STATE(57), 1, sym_closure_parameters, - [42257] = 4, + [42456] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(23), 1, anon_sym_PIPE, - STATE(72), 1, + STATE(65), 1, sym_closure_parameters, - [42270] = 4, + [42469] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - STATE(943), 1, - sym_parameters, - [42283] = 4, + ACTIONS(3262), 2, + sym_identifier, + sym_metavariable, + [42480] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2704), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_enum_variant_list, - [42296] = 4, + ACTIONS(2736), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42491] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - STATE(945), 1, - sym_parameters, - [42309] = 4, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(3264), 1, + anon_sym_COMMA, + [42504] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2818), 1, + ACTIONS(2984), 2, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(2820), 1, - anon_sym_as, - [42322] = 4, + [42515] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1329), 1, - anon_sym_LPAREN, - STATE(376), 1, - sym_parameters, - [42335] = 3, + ACTIONS(2672), 1, + anon_sym_COLON, + ACTIONS(2690), 1, + anon_sym_PIPE, + [42528] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3244), 2, - anon_sym_const, - sym_mutable_specifier, - [42346] = 4, + ACTIONS(3266), 2, + anon_sym_COMMA, + anon_sym_GT, + [42539] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3246), 1, + ACTIONS(1331), 1, + anon_sym_LT2, + STATE(469), 1, + sym_type_arguments, + [42552] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2880), 1, sym_identifier, - ACTIONS(3248), 1, + ACTIONS(2882), 1, sym_metavariable, - [42359] = 3, + [42565] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3250), 2, + ACTIONS(2957), 2, anon_sym_COMMA, anon_sym_RBRACE, - [42370] = 4, + [42576] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3180), 1, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(58), 1, + sym_closure_parameters, + [42589] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(292), 1, sym_field_declaration_list, - [42383] = 4, + [42602] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2704), 1, - anon_sym_LBRACE, - STATE(237), 1, - sym_enum_variant_list, - [42396] = 3, + ACTIONS(2831), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42613] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(62), 1, + sym_closure_parameters, + [42626] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3252), 2, + ACTIONS(3268), 2, anon_sym_const, sym_mutable_specifier, - [42407] = 3, + [42637] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3254), 2, + ACTIONS(2917), 2, anon_sym_COMMA, anon_sym_RBRACE, - [42418] = 4, + [42648] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1420), 1, + ACTIONS(1382), 1, anon_sym_LT2, - STATE(1465), 1, + STATE(1437), 1, sym_type_arguments, - [42431] = 3, + [42661] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42442] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3258), 2, - anon_sym_COMMA, - anon_sym_GT, - [42453] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1903), 1, - anon_sym_RBRACE, - ACTIONS(3260), 1, - anon_sym_COMMA, - [42466] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - STATE(55), 1, - sym_closure_parameters, - [42479] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3000), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42490] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_declaration_list, - [42503] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(23), 1, - anon_sym_PIPE, - STATE(57), 1, - sym_closure_parameters, - [42516] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3262), 1, - anon_sym_DOT, - [42526] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3264), 1, - anon_sym_SEMI, - [42536] = 3, + ACTIONS(1377), 1, + anon_sym_LPAREN, + STATE(824), 1, + sym_parameters, + [42674] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3266), 1, + ACTIONS(3270), 1, sym_identifier, - [42546] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3268), 1, - anon_sym_COLON, - [42556] = 3, + [42684] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3270), 1, - anon_sym_DOT, - [42566] = 3, + ACTIONS(2861), 1, + anon_sym_GT, + [42694] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3272), 1, - anon_sym_RPAREN, - [42576] = 3, + anon_sym_RBRACK, + [42704] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3274), 1, - anon_sym_EQ, - [42586] = 3, + ts_builtin_sym_end, + [42714] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3276), 1, - anon_sym_LPAREN, - [42596] = 3, + anon_sym_DOT, + [42724] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2903), 1, + ACTIONS(3124), 1, anon_sym_LBRACE, - [42606] = 3, + [42734] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3278), 1, - anon_sym_RBRACE, - [42616] = 3, + sym_identifier, + [42744] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3280), 1, anon_sym_SEMI, - [42626] = 3, + [42754] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3282), 1, - sym_identifier, - [42636] = 3, + anon_sym_EQ, + [42764] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3284), 1, - anon_sym_LBRACK, - [42646] = 3, + sym_identifier, + [42774] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2660), 1, + ACTIONS(3286), 1, anon_sym_RPAREN, - [42656] = 3, + [42784] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3286), 1, + ACTIONS(2900), 1, anon_sym_RBRACE, - [42666] = 3, + [42794] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3288), 1, - anon_sym_RPAREN, - [42676] = 3, + ACTIONS(3118), 1, + anon_sym_LBRACE, + [42804] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3290), 1, - anon_sym_COLON, - [42686] = 3, + ACTIONS(3288), 1, + sym_identifier, + [42814] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(825), 1, - anon_sym_RBRACK, - [42696] = 3, + ACTIONS(1893), 1, + anon_sym_RPAREN, + [42824] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3292), 1, + ACTIONS(3290), 1, anon_sym_COLON, - [42706] = 3, + [42834] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2160), 1, - anon_sym_DOT, - [42716] = 3, + ACTIONS(3122), 1, + anon_sym_RBRACE, + [42844] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3294), 1, - anon_sym_RBRACK, - [42726] = 3, + ACTIONS(3292), 1, + anon_sym_LBRACK, + [42854] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3296), 1, - anon_sym_COLON, - [42736] = 3, + ACTIONS(1720), 1, + anon_sym_DOT, + [42864] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2818), 1, - anon_sym_GT, - [42746] = 3, + ACTIONS(3294), 1, + anon_sym_in, + [42874] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1915), 1, + ACTIONS(3296), 1, anon_sym_RPAREN, - [42756] = 3, + [42884] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3298), 1, - sym_identifier, - [42766] = 3, + anon_sym_COLON, + [42894] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3300), 1, - sym_identifier, - [42776] = 3, + anon_sym_RBRACK, + [42904] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3302), 1, - anon_sym_SEMI, - [42786] = 3, + anon_sym_DOT, + [42914] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3304), 1, - sym_identifier, - [42796] = 3, + ACTIONS(3022), 1, + anon_sym_LBRACE, + [42924] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3306), 1, - sym_identifier, - [42806] = 3, + ACTIONS(3304), 1, + anon_sym_DOT, + [42934] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3042), 1, - anon_sym_RBRACE, - [42816] = 3, + ACTIONS(3306), 1, + anon_sym_LPAREN, + [42944] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3308), 1, - anon_sym_RBRACK, - [42826] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2369), 1, - anon_sym_DOT, - [42836] = 3, + anon_sym_LPAREN, + [42954] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3310), 1, anon_sym_SEMI, - [42846] = 3, + [42964] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3312), 1, - anon_sym_SEMI, - [42856] = 3, + sym_identifier, + [42974] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3314), 1, - anon_sym_DOT, - [42866] = 3, + anon_sym_RBRACK, + [42984] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2888), 1, + anon_sym_RBRACE, + [42994] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3316), 1, - anon_sym_RPAREN, - [42876] = 3, + anon_sym_RBRACE, + [43004] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3318), 1, - anon_sym_RBRACK, - [42886] = 3, + anon_sym_let, + [43014] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3320), 1, - anon_sym_COLON, - [42896] = 3, + anon_sym_SEMI, + [43024] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3322), 1, - sym_identifier, - [42906] = 3, + anon_sym_RBRACE, + [43034] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3324), 1, anon_sym_RBRACK, - [42916] = 3, + [43044] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2373), 1, + anon_sym_DOT, + [43054] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3326), 1, sym_identifier, - [42926] = 3, + [43064] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3328), 1, - anon_sym_SEMI, - [42936] = 3, + sym_identifier, + [43074] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3330), 1, sym_identifier, - [42946] = 3, + [43084] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3332), 1, - sym_identifier, - [42956] = 3, + anon_sym_SEMI, + [43094] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3334), 1, sym_identifier, - [42966] = 3, + [43104] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3336), 1, - anon_sym_in, - [42976] = 3, + anon_sym_GT, + [43114] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3338), 1, - anon_sym_COLON, - [42986] = 3, + sym_identifier, + [43124] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3340), 1, - anon_sym_RBRACK, - [42996] = 3, + anon_sym_catch, + [43134] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3342), 1, - anon_sym_DOT, - [43006] = 3, + anon_sym_GT, + [43144] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2233), 1, - anon_sym_DOT, - [43016] = 3, + ACTIONS(3344), 1, + anon_sym_SEMI, + [43154] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3344), 1, - anon_sym_RBRACK, - [43026] = 3, + ACTIONS(3346), 1, + anon_sym_DOT, + [43164] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3346), 1, - sym_identifier, - [43036] = 3, + ACTIONS(2237), 1, + anon_sym_DOT, + [43174] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3348), 1, + anon_sym_COLON, + [43184] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2588), 1, anon_sym_RPAREN, - [43046] = 3, + [43194] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3350), 1, - anon_sym_COLON, - [43056] = 3, + anon_sym_DOT, + [43204] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3352), 1, - ts_builtin_sym_end, - [43066] = 3, + anon_sym_COLON, + [43214] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3354), 1, anon_sym_DOT, - [43076] = 3, + [43224] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3356), 1, anon_sym_DOT, - [43086] = 3, + [43234] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3358), 1, anon_sym_DOT, - [43096] = 3, + [43244] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3360), 1, - anon_sym_RBRACK, - [43106] = 3, + ACTIONS(567), 1, + anon_sym_RBRACE, + [43254] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2897), 1, + ACTIONS(3137), 1, anon_sym_RBRACE, - [43116] = 3, + [43264] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2851), 1, - anon_sym_LBRACE, - [43126] = 3, + ACTIONS(3360), 1, + anon_sym_SEMI, + [43274] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3362), 1, - anon_sym_DOT, - [43136] = 3, + anon_sym_COLON, + [43284] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3364), 1, - anon_sym_LPAREN, - [43146] = 3, + anon_sym_DOT, + [43294] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3366), 1, - sym_identifier, - [43156] = 3, + anon_sym_SEMI, + [43304] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3368), 1, sym_identifier, - [43166] = 3, + [43314] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3370), 1, sym_identifier, - [43176] = 3, + [43324] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3372), 1, - anon_sym_RBRACK, - [43186] = 3, + sym_identifier, + [43334] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2853), 1, - anon_sym_LBRACE, - [43196] = 3, + ACTIONS(2720), 1, + anon_sym_RBRACK, + [43344] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3374), 1, sym_identifier, - [43206] = 3, + [43354] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3376), 1, - anon_sym_LPAREN, - [43216] = 3, + sym_identifier, + [43364] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3378), 1, - anon_sym_RBRACK, - [43226] = 3, + sym_identifier, + [43374] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3380), 1, sym_identifier, - [43236] = 3, + [43384] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3382), 1, - sym_identifier, - [43246] = 3, + anon_sym_COLON, + [43394] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3384), 1, - anon_sym_SEMI, - [43256] = 3, + ACTIONS(2706), 1, + anon_sym_RPAREN, + [43404] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3386), 1, - sym_identifier, - [43266] = 3, + ACTIONS(825), 1, + anon_sym_RBRACK, + [43414] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2893), 1, - anon_sym_LBRACE, - [43276] = 3, + ACTIONS(3384), 1, + anon_sym_RBRACK, + [43424] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_RBRACE, - [43286] = 3, + ACTIONS(3041), 1, + anon_sym_LBRACE, + [43434] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3388), 1, - anon_sym_RPAREN, - [43296] = 3, + ACTIONS(3386), 1, + sym_identifier, + [43444] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3110), 1, - anon_sym_RBRACE, - [43306] = 3, + ACTIONS(3388), 1, + anon_sym_RPAREN, + [43454] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2775), 1, - anon_sym_RBRACK, - [43316] = 3, + ACTIONS(3053), 1, + anon_sym_RBRACE, + [43464] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3390), 1, sym_identifier, - [43326] = 3, + [43474] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3392), 1, sym_identifier, - [43336] = 3, + [43484] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3394), 1, anon_sym_SEMI, - [43346] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3396), 1, - sym_identifier, - [43356] = 3, + [43494] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(494), 1, - anon_sym_RBRACE, - [43366] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2202), 1, + ACTIONS(2210), 1, anon_sym_DOT, - [43376] = 3, + [43504] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2570), 1, + ACTIONS(3396), 1, anon_sym_RPAREN, - [43386] = 3, + [43514] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3398), 1, - sym_identifier, - [43396] = 3, + ACTIONS(1716), 1, + anon_sym_DOT, + [43524] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3158), 1, + ACTIONS(3059), 1, anon_sym_RBRACE, - [43406] = 3, + [43534] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3114), 1, - anon_sym_RBRACE, - [43416] = 3, + ACTIONS(3398), 1, + anon_sym_RBRACK, + [43544] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2849), 1, - anon_sym_RBRACE, - [43426] = 3, + ACTIONS(3400), 1, + anon_sym_COLON, + [43554] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3400), 1, - anon_sym_DOT, - [43436] = 3, + ACTIONS(821), 1, + anon_sym_RBRACK, + [43564] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3402), 1, - anon_sym_RPAREN, - [43446] = 3, + anon_sym_SEMI, + [43574] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3404), 1, - anon_sym_RPAREN, - [43456] = 3, + sym_identifier, + [43584] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3406), 1, sym_identifier, - [43466] = 3, + [43594] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3408), 1, - anon_sym_GT, - [43476] = 3, + anon_sym_RPAREN, + [43604] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3410), 1, - anon_sym_LBRACK, - [43486] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2845), 1, - anon_sym_RBRACE, - [43496] = 3, + anon_sym_RBRACK, + [43614] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3412), 1, - anon_sym_RBRACK, - [43506] = 3, + anon_sym_LBRACK, + [43624] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3414), 1, - anon_sym_COLON, - [43516] = 3, + sym_identifier, + [43634] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3416), 1, - sym_identifier, - [43526] = 3, + anon_sym_SEMI, + [43644] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3418), 1, - anon_sym_COLON, - [43536] = 3, + sym_identifier, + [43654] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3214), 1, - anon_sym_DOT, - [43546] = 3, + ACTIONS(3420), 1, + anon_sym_RPAREN, + [43664] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3420), 1, - anon_sym_DOT, - [43556] = 3, + ACTIONS(3110), 1, + anon_sym_RBRACE, + [43674] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3422), 1, - anon_sym_LBRACE, - [43566] = 3, + sym_identifier, + [43684] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3424), 1, - anon_sym_DOT, - [43576] = 3, + anon_sym_RBRACK, + [43694] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3426), 1, - anon_sym_LBRACE, - [43586] = 3, + ACTIONS(3234), 1, + anon_sym_DOT, + [43704] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2832), 1, - anon_sym_RBRACE, - [43596] = 3, + ACTIONS(3426), 1, + anon_sym_DOT, + [43714] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3428), 1, - anon_sym_SEMI, - [43606] = 3, + anon_sym_LBRACE, + [43724] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3430), 1, - anon_sym_RPAREN, - [43616] = 3, + anon_sym_COLON, + [43734] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3432), 1, - anon_sym_catch, - [43626] = 3, + anon_sym_LBRACE, + [43744] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(294), 1, - anon_sym_COLON, - [43636] = 3, + ACTIONS(2172), 1, + anon_sym_DOT, + [43754] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3434), 1, - anon_sym_LBRACK, - [43646] = 3, + sym_identifier, + [43764] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(2618), 1, - anon_sym_RPAREN, - [43656] = 3, + ACTIONS(2837), 1, + anon_sym_RBRACE, + [43774] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3436), 1, - anon_sym_SEMI, - [43666] = 3, + ACTIONS(438), 1, + anon_sym_RBRACE, + [43784] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3438), 1, - sym_identifier, - [43676] = 3, + ACTIONS(294), 1, + anon_sym_COLON, + [43794] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1720), 1, - anon_sym_DOT, - [43686] = 3, + ACTIONS(3436), 1, + anon_sym_LBRACK, + [43804] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3440), 1, + ACTIONS(3438), 1, anon_sym_COLON, - [43696] = 3, + [43814] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3442), 1, - anon_sym_COLON, - [43706] = 3, + ACTIONS(3440), 1, + sym_identifier, + [43824] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - [43716] = 3, + ACTIONS(3442), 1, + anon_sym_RPAREN, + [43834] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3174), 1, - anon_sym_LBRACK, - [43726] = 3, + ACTIONS(3444), 1, + anon_sym_RBRACK, + [43844] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3446), 1, - anon_sym_RBRACK, - [43736] = 3, + anon_sym_COLON, + [43854] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3448), 1, anon_sym_COLON, - [43746] = 3, + [43864] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3450), 1, - anon_sym_EQ, - [43756] = 3, + anon_sym_GT, + [43874] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3204), 1, + anon_sym_LBRACK, + [43884] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3452), 1, - sym_identifier, - [43766] = 3, + anon_sym_RBRACK, + [43894] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3454), 1, - sym_identifier, - [43776] = 3, + anon_sym_COLON, + [43904] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3456), 1, - anon_sym_GT, - [43786] = 3, + anon_sym_EQ, + [43914] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3458), 1, - anon_sym_COLON, - [43796] = 3, + sym_identifier, + [43924] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(2598), 1, + anon_sym_RPAREN, + [43934] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3460), 1, - anon_sym_LBRACK, - [43806] = 3, + anon_sym_SEMI, + [43944] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3462), 1, anon_sym_COLON, - [43816] = 3, + [43954] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3464), 1, anon_sym_LBRACK, - [43826] = 3, + [43964] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3466), 1, - anon_sym_GT, - [43836] = 3, + anon_sym_COLON, + [43974] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3468), 1, - anon_sym_LPAREN, - [43846] = 3, + anon_sym_LBRACK, + [43984] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3470), 1, sym_identifier, - [43856] = 3, + [43994] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3472), 1, - sym_identifier, - [43866] = 3, + anon_sym_LPAREN, + [44004] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3474), 1, - anon_sym_LPAREN, - [43876] = 3, + sym_identifier, + [44014] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3476), 1, - anon_sym_let, - [43886] = 3, + sym_identifier, + [44024] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, ACTIONS(3478), 1, - anon_sym_in, - [43896] = 3, + anon_sym_LPAREN, + [44034] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(1716), 1, + ACTIONS(3480), 1, anon_sym_DOT, - [43906] = 3, + [44044] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3480), 1, + ACTIONS(3482), 1, + anon_sym_in, + [44054] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3484), 1, + anon_sym_RPAREN, + [44064] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(5), 1, + sym_block_comment, + ACTIONS(3486), 1, anon_sym_catch, - [43916] = 3, + [44074] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(821), 1, - anon_sym_RBRACK, - [43926] = 3, + ACTIONS(3488), 1, + anon_sym_LPAREN, + [44084] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3482), 1, + ACTIONS(3490), 1, sym_identifier, - [43936] = 3, + [44094] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3484), 1, - anon_sym_SEMI, - [43946] = 3, + ACTIONS(3492), 1, + anon_sym_RBRACK, + [44104] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3486), 1, + ACTIONS(3494), 1, anon_sym_let, - [43956] = 3, + [44114] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(5), 1, sym_block_comment, - ACTIONS(3488), 1, + ACTIONS(3496), 1, anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(294)] = 0, - [SMALL_STATE(295)] = 73, - [SMALL_STATE(296)] = 146, - [SMALL_STATE(297)] = 219, - [SMALL_STATE(298)] = 292, - [SMALL_STATE(299)] = 365, - [SMALL_STATE(300)] = 505, - [SMALL_STATE(301)] = 581, - [SMALL_STATE(302)] = 654, - [SMALL_STATE(303)] = 791, - [SMALL_STATE(304)] = 928, - [SMALL_STATE(305)] = 1065, - [SMALL_STATE(306)] = 1202, - [SMALL_STATE(307)] = 1272, - [SMALL_STATE(308)] = 1342, - [SMALL_STATE(309)] = 1412, - [SMALL_STATE(310)] = 1546, - [SMALL_STATE(311)] = 1616, - [SMALL_STATE(312)] = 1750, - [SMALL_STATE(313)] = 1820, - [SMALL_STATE(314)] = 1954, - [SMALL_STATE(315)] = 2024, - [SMALL_STATE(316)] = 2158, - [SMALL_STATE(317)] = 2228, - [SMALL_STATE(318)] = 2298, - [SMALL_STATE(319)] = 2432, - [SMALL_STATE(320)] = 2502, - [SMALL_STATE(321)] = 2636, - [SMALL_STATE(322)] = 2706, - [SMALL_STATE(323)] = 2776, - [SMALL_STATE(324)] = 2846, - [SMALL_STATE(325)] = 2916, - [SMALL_STATE(326)] = 3050, - [SMALL_STATE(327)] = 3120, - [SMALL_STATE(328)] = 3190, - [SMALL_STATE(329)] = 3321, - [SMALL_STATE(330)] = 3446, - [SMALL_STATE(331)] = 3571, - [SMALL_STATE(332)] = 3696, - [SMALL_STATE(333)] = 3821, - [SMALL_STATE(334)] = 3946, - [SMALL_STATE(335)] = 4068, - [SMALL_STATE(336)] = 4190, - [SMALL_STATE(337)] = 4312, - [SMALL_STATE(338)] = 4431, - [SMALL_STATE(339)] = 4550, - [SMALL_STATE(340)] = 4669, - [SMALL_STATE(341)] = 4788, - [SMALL_STATE(342)] = 4907, - [SMALL_STATE(343)] = 5026, - [SMALL_STATE(344)] = 5145, - [SMALL_STATE(345)] = 5264, - [SMALL_STATE(346)] = 5383, - [SMALL_STATE(347)] = 5502, - [SMALL_STATE(348)] = 5621, - [SMALL_STATE(349)] = 5740, - [SMALL_STATE(350)] = 5859, - [SMALL_STATE(351)] = 5978, - [SMALL_STATE(352)] = 6097, - [SMALL_STATE(353)] = 6162, - [SMALL_STATE(354)] = 6229, - [SMALL_STATE(355)] = 6291, - [SMALL_STATE(356)] = 6353, - [SMALL_STATE(357)] = 6415, - [SMALL_STATE(358)] = 6476, - [SMALL_STATE(359)] = 6537, - [SMALL_STATE(360)] = 6646, - [SMALL_STATE(361)] = 6755, - [SMALL_STATE(362)] = 6864, - [SMALL_STATE(363)] = 6973, - [SMALL_STATE(364)] = 7079, - [SMALL_STATE(365)] = 7185, - [SMALL_STATE(366)] = 7291, - [SMALL_STATE(367)] = 7360, - [SMALL_STATE(368)] = 7424, - [SMALL_STATE(369)] = 7483, - [SMALL_STATE(370)] = 7542, - [SMALL_STATE(371)] = 7601, - [SMALL_STATE(372)] = 7660, - [SMALL_STATE(373)] = 7716, - [SMALL_STATE(374)] = 7770, - [SMALL_STATE(375)] = 7824, - [SMALL_STATE(376)] = 7878, - [SMALL_STATE(377)] = 7934, - [SMALL_STATE(378)] = 7988, - [SMALL_STATE(379)] = 8044, - [SMALL_STATE(380)] = 8098, - [SMALL_STATE(381)] = 8152, - [SMALL_STATE(382)] = 8224, - [SMALL_STATE(383)] = 8277, - [SMALL_STATE(384)] = 8330, - [SMALL_STATE(385)] = 8383, - [SMALL_STATE(386)] = 8436, - [SMALL_STATE(387)] = 8489, - [SMALL_STATE(388)] = 8542, - [SMALL_STATE(389)] = 8595, - [SMALL_STATE(390)] = 8648, - [SMALL_STATE(391)] = 8701, - [SMALL_STATE(392)] = 8754, - [SMALL_STATE(393)] = 8807, - [SMALL_STATE(394)] = 8860, - [SMALL_STATE(395)] = 8913, - [SMALL_STATE(396)] = 8968, - [SMALL_STATE(397)] = 9025, - [SMALL_STATE(398)] = 9078, - [SMALL_STATE(399)] = 9131, - [SMALL_STATE(400)] = 9184, - [SMALL_STATE(401)] = 9237, - [SMALL_STATE(402)] = 9290, - [SMALL_STATE(403)] = 9343, - [SMALL_STATE(404)] = 9396, - [SMALL_STATE(405)] = 9453, - [SMALL_STATE(406)] = 9506, - [SMALL_STATE(407)] = 9559, - [SMALL_STATE(408)] = 9614, - [SMALL_STATE(409)] = 9667, - [SMALL_STATE(410)] = 9720, - [SMALL_STATE(411)] = 9775, - [SMALL_STATE(412)] = 9830, - [SMALL_STATE(413)] = 9883, - [SMALL_STATE(414)] = 9938, - [SMALL_STATE(415)] = 9991, - [SMALL_STATE(416)] = 10046, - [SMALL_STATE(417)] = 10105, - [SMALL_STATE(418)] = 10158, - [SMALL_STATE(419)] = 10211, - [SMALL_STATE(420)] = 10269, - [SMALL_STATE(421)] = 10325, - [SMALL_STATE(422)] = 10377, - [SMALL_STATE(423)] = 10429, - [SMALL_STATE(424)] = 10481, - [SMALL_STATE(425)] = 10533, - [SMALL_STATE(426)] = 10585, - [SMALL_STATE(427)] = 10637, - [SMALL_STATE(428)] = 10689, - [SMALL_STATE(429)] = 10741, - [SMALL_STATE(430)] = 10793, - [SMALL_STATE(431)] = 10845, - [SMALL_STATE(432)] = 10897, - [SMALL_STATE(433)] = 10949, - [SMALL_STATE(434)] = 11001, - [SMALL_STATE(435)] = 11053, - [SMALL_STATE(436)] = 11107, - [SMALL_STATE(437)] = 11159, - [SMALL_STATE(438)] = 11211, - [SMALL_STATE(439)] = 11263, - [SMALL_STATE(440)] = 11315, - [SMALL_STATE(441)] = 11367, - [SMALL_STATE(442)] = 11419, - [SMALL_STATE(443)] = 11471, - [SMALL_STATE(444)] = 11523, - [SMALL_STATE(445)] = 11575, - [SMALL_STATE(446)] = 11627, - [SMALL_STATE(447)] = 11679, - [SMALL_STATE(448)] = 11731, - [SMALL_STATE(449)] = 11787, - [SMALL_STATE(450)] = 11839, - [SMALL_STATE(451)] = 11893, - [SMALL_STATE(452)] = 11945, - [SMALL_STATE(453)] = 11997, - [SMALL_STATE(454)] = 12049, - [SMALL_STATE(455)] = 12101, - [SMALL_STATE(456)] = 12153, - [SMALL_STATE(457)] = 12205, - [SMALL_STATE(458)] = 12259, - [SMALL_STATE(459)] = 12311, - [SMALL_STATE(460)] = 12363, - [SMALL_STATE(461)] = 12415, - [SMALL_STATE(462)] = 12469, - [SMALL_STATE(463)] = 12521, - [SMALL_STATE(464)] = 12573, - [SMALL_STATE(465)] = 12625, - [SMALL_STATE(466)] = 12677, - [SMALL_STATE(467)] = 12729, - [SMALL_STATE(468)] = 12782, - [SMALL_STATE(469)] = 12835, - [SMALL_STATE(470)] = 12892, - [SMALL_STATE(471)] = 12949, - [SMALL_STATE(472)] = 13006, - [SMALL_STATE(473)] = 13059, - [SMALL_STATE(474)] = 13116, - [SMALL_STATE(475)] = 13188, - [SMALL_STATE(476)] = 13250, - [SMALL_STATE(477)] = 13316, - [SMALL_STATE(478)] = 13376, - [SMALL_STATE(479)] = 13444, - [SMALL_STATE(480)] = 13520, - [SMALL_STATE(481)] = 13600, - [SMALL_STATE(482)] = 13676, - [SMALL_STATE(483)] = 13752, - [SMALL_STATE(484)] = 13810, - [SMALL_STATE(485)] = 13890, - [SMALL_STATE(486)] = 13964, - [SMALL_STATE(487)] = 14040, - [SMALL_STATE(488)] = 14120, - [SMALL_STATE(489)] = 14196, - [SMALL_STATE(490)] = 14260, - [SMALL_STATE(491)] = 14336, - [SMALL_STATE(492)] = 14412, - [SMALL_STATE(493)] = 14466, - [SMALL_STATE(494)] = 14519, - [SMALL_STATE(495)] = 14570, - [SMALL_STATE(496)] = 14623, - [SMALL_STATE(497)] = 14703, - [SMALL_STATE(498)] = 14751, - [SMALL_STATE(499)] = 14831, - [SMALL_STATE(500)] = 14881, - [SMALL_STATE(501)] = 14933, - [SMALL_STATE(502)] = 14981, - [SMALL_STATE(503)] = 15033, - [SMALL_STATE(504)] = 15083, - [SMALL_STATE(505)] = 15131, - [SMALL_STATE(506)] = 15211, - [SMALL_STATE(507)] = 15291, - [SMALL_STATE(508)] = 15341, - [SMALL_STATE(509)] = 15389, - [SMALL_STATE(510)] = 15469, - [SMALL_STATE(511)] = 15516, - [SMALL_STATE(512)] = 15597, - [SMALL_STATE(513)] = 15670, - [SMALL_STATE(514)] = 15731, - [SMALL_STATE(515)] = 15804, - [SMALL_STATE(516)] = 15877, - [SMALL_STATE(517)] = 15940, - [SMALL_STATE(518)] = 16005, - [SMALL_STATE(519)] = 16078, - [SMALL_STATE(520)] = 16171, - [SMALL_STATE(521)] = 16222, - [SMALL_STATE(522)] = 16269, - [SMALL_STATE(523)] = 16350, - [SMALL_STATE(524)] = 16427, - [SMALL_STATE(525)] = 16496, - [SMALL_STATE(526)] = 16567, - [SMALL_STATE(527)] = 16624, - [SMALL_STATE(528)] = 16697, - [SMALL_STATE(529)] = 16778, - [SMALL_STATE(530)] = 16859, - [SMALL_STATE(531)] = 16932, - [SMALL_STATE(532)] = 16983, - [SMALL_STATE(533)] = 17060, - [SMALL_STATE(534)] = 17137, - [SMALL_STATE(535)] = 17192, - [SMALL_STATE(536)] = 17265, - [SMALL_STATE(537)] = 17324, - [SMALL_STATE(538)] = 17400, - [SMALL_STATE(539)] = 17490, - [SMALL_STATE(540)] = 17568, - [SMALL_STATE(541)] = 17658, - [SMALL_STATE(542)] = 17734, - [SMALL_STATE(543)] = 17810, - [SMALL_STATE(544)] = 17886, - [SMALL_STATE(545)] = 17964, - [SMALL_STATE(546)] = 18036, - [SMALL_STATE(547)] = 18114, - [SMALL_STATE(548)] = 18186, - [SMALL_STATE(549)] = 18262, - [SMALL_STATE(550)] = 18340, - [SMALL_STATE(551)] = 18418, - [SMALL_STATE(552)] = 18496, - [SMALL_STATE(553)] = 18570, - [SMALL_STATE(554)] = 18648, - [SMALL_STATE(555)] = 18720, - [SMALL_STATE(556)] = 18798, - [SMALL_STATE(557)] = 18876, - [SMALL_STATE(558)] = 18954, - [SMALL_STATE(559)] = 19032, - [SMALL_STATE(560)] = 19108, - [SMALL_STATE(561)] = 19186, - [SMALL_STATE(562)] = 19264, - [SMALL_STATE(563)] = 19340, - [SMALL_STATE(564)] = 19396, - [SMALL_STATE(565)] = 19474, - [SMALL_STATE(566)] = 19564, - [SMALL_STATE(567)] = 19642, - [SMALL_STATE(568)] = 19712, - [SMALL_STATE(569)] = 19790, - [SMALL_STATE(570)] = 19866, - [SMALL_STATE(571)] = 19944, - [SMALL_STATE(572)] = 20016, - [SMALL_STATE(573)] = 20088, - [SMALL_STATE(574)] = 20164, - [SMALL_STATE(575)] = 20242, - [SMALL_STATE(576)] = 20310, - [SMALL_STATE(577)] = 20386, - [SMALL_STATE(578)] = 20464, - [SMALL_STATE(579)] = 20536, - [SMALL_STATE(580)] = 20612, - [SMALL_STATE(581)] = 20688, - [SMALL_STATE(582)] = 20750, - [SMALL_STATE(583)] = 20826, - [SMALL_STATE(584)] = 20904, - [SMALL_STATE(585)] = 20980, - [SMALL_STATE(586)] = 21058, - [SMALL_STATE(587)] = 21122, - [SMALL_STATE(588)] = 21182, - [SMALL_STATE(589)] = 21272, - [SMALL_STATE(590)] = 21350, - [SMALL_STATE(591)] = 21426, - [SMALL_STATE(592)] = 21502, - [SMALL_STATE(593)] = 21560, - [SMALL_STATE(594)] = 21650, - [SMALL_STATE(595)] = 21724, - [SMALL_STATE(596)] = 21778, - [SMALL_STATE(597)] = 21868, - [SMALL_STATE(598)] = 21940, - [SMALL_STATE(599)] = 22015, - [SMALL_STATE(600)] = 22090, - [SMALL_STATE(601)] = 22165, - [SMALL_STATE(602)] = 22240, - [SMALL_STATE(603)] = 22315, - [SMALL_STATE(604)] = 22388, - [SMALL_STATE(605)] = 22475, - [SMALL_STATE(606)] = 22550, - [SMALL_STATE(607)] = 22637, - [SMALL_STATE(608)] = 22712, - [SMALL_STATE(609)] = 22787, - [SMALL_STATE(610)] = 22862, - [SMALL_STATE(611)] = 22937, - [SMALL_STATE(612)] = 23012, - [SMALL_STATE(613)] = 23087, - [SMALL_STATE(614)] = 23162, - [SMALL_STATE(615)] = 23237, - [SMALL_STATE(616)] = 23312, - [SMALL_STATE(617)] = 23387, - [SMALL_STATE(618)] = 23474, - [SMALL_STATE(619)] = 23549, - [SMALL_STATE(620)] = 23622, - [SMALL_STATE(621)] = 23697, - [SMALL_STATE(622)] = 23772, - [SMALL_STATE(623)] = 23847, - [SMALL_STATE(624)] = 23922, - [SMALL_STATE(625)] = 24006, - [SMALL_STATE(626)] = 24077, - [SMALL_STATE(627)] = 24120, - [SMALL_STATE(628)] = 24191, - [SMALL_STATE(629)] = 24266, - [SMALL_STATE(630)] = 24341, - [SMALL_STATE(631)] = 24416, - [SMALL_STATE(632)] = 24491, - [SMALL_STATE(633)] = 24566, - [SMALL_STATE(634)] = 24641, - [SMALL_STATE(635)] = 24716, - [SMALL_STATE(636)] = 24791, - [SMALL_STATE(637)] = 24866, - [SMALL_STATE(638)] = 24941, - [SMALL_STATE(639)] = 25016, - [SMALL_STATE(640)] = 25091, - [SMALL_STATE(641)] = 25166, - [SMALL_STATE(642)] = 25241, - [SMALL_STATE(643)] = 25316, - [SMALL_STATE(644)] = 25388, - [SMALL_STATE(645)] = 25460, - [SMALL_STATE(646)] = 25532, - [SMALL_STATE(647)] = 25604, - [SMALL_STATE(648)] = 25676, - [SMALL_STATE(649)] = 25748, - [SMALL_STATE(650)] = 25820, - [SMALL_STATE(651)] = 25892, - [SMALL_STATE(652)] = 25964, - [SMALL_STATE(653)] = 26036, - [SMALL_STATE(654)] = 26108, - [SMALL_STATE(655)] = 26180, - [SMALL_STATE(656)] = 26252, - [SMALL_STATE(657)] = 26324, - [SMALL_STATE(658)] = 26396, - [SMALL_STATE(659)] = 26468, - [SMALL_STATE(660)] = 26540, - [SMALL_STATE(661)] = 26612, - [SMALL_STATE(662)] = 26684, - [SMALL_STATE(663)] = 26756, - [SMALL_STATE(664)] = 26828, - [SMALL_STATE(665)] = 26900, - [SMALL_STATE(666)] = 26972, - [SMALL_STATE(667)] = 27044, - [SMALL_STATE(668)] = 27116, - [SMALL_STATE(669)] = 27188, - [SMALL_STATE(670)] = 27260, - [SMALL_STATE(671)] = 27332, - [SMALL_STATE(672)] = 27404, - [SMALL_STATE(673)] = 27476, - [SMALL_STATE(674)] = 27548, - [SMALL_STATE(675)] = 27620, - [SMALL_STATE(676)] = 27692, - [SMALL_STATE(677)] = 27764, - [SMALL_STATE(678)] = 27836, - [SMALL_STATE(679)] = 27908, - [SMALL_STATE(680)] = 27980, - [SMALL_STATE(681)] = 28052, - [SMALL_STATE(682)] = 28124, - [SMALL_STATE(683)] = 28196, - [SMALL_STATE(684)] = 28268, - [SMALL_STATE(685)] = 28340, - [SMALL_STATE(686)] = 28412, - [SMALL_STATE(687)] = 28484, - [SMALL_STATE(688)] = 28556, - [SMALL_STATE(689)] = 28628, - [SMALL_STATE(690)] = 28697, - [SMALL_STATE(691)] = 28766, - [SMALL_STATE(692)] = 28835, - [SMALL_STATE(693)] = 28904, - [SMALL_STATE(694)] = 28966, - [SMALL_STATE(695)] = 29025, - [SMALL_STATE(696)] = 29084, - [SMALL_STATE(697)] = 29140, - [SMALL_STATE(698)] = 29196, - [SMALL_STATE(699)] = 29252, - [SMALL_STATE(700)] = 29308, - [SMALL_STATE(701)] = 29364, - [SMALL_STATE(702)] = 29397, - [SMALL_STATE(703)] = 29430, - [SMALL_STATE(704)] = 29463, - [SMALL_STATE(705)] = 29500, - [SMALL_STATE(706)] = 29533, - [SMALL_STATE(707)] = 29566, - [SMALL_STATE(708)] = 29599, - [SMALL_STATE(709)] = 29628, - [SMALL_STATE(710)] = 29657, - [SMALL_STATE(711)] = 29686, - [SMALL_STATE(712)] = 29717, - [SMALL_STATE(713)] = 29746, - [SMALL_STATE(714)] = 29775, - [SMALL_STATE(715)] = 29804, - [SMALL_STATE(716)] = 29844, - [SMALL_STATE(717)] = 29890, - [SMALL_STATE(718)] = 29936, - [SMALL_STATE(719)] = 29982, - [SMALL_STATE(720)] = 30012, - [SMALL_STATE(721)] = 30058, - [SMALL_STATE(722)] = 30104, - [SMALL_STATE(723)] = 30150, - [SMALL_STATE(724)] = 30196, - [SMALL_STATE(725)] = 30223, - [SMALL_STATE(726)] = 30250, - [SMALL_STATE(727)] = 30277, - [SMALL_STATE(728)] = 30304, - [SMALL_STATE(729)] = 30331, - [SMALL_STATE(730)] = 30358, - [SMALL_STATE(731)] = 30385, - [SMALL_STATE(732)] = 30414, - [SMALL_STATE(733)] = 30441, - [SMALL_STATE(734)] = 30472, - [SMALL_STATE(735)] = 30499, - [SMALL_STATE(736)] = 30526, - [SMALL_STATE(737)] = 30553, - [SMALL_STATE(738)] = 30580, - [SMALL_STATE(739)] = 30607, - [SMALL_STATE(740)] = 30634, - [SMALL_STATE(741)] = 30661, - [SMALL_STATE(742)] = 30688, - [SMALL_STATE(743)] = 30715, - [SMALL_STATE(744)] = 30742, - [SMALL_STATE(745)] = 30769, - [SMALL_STATE(746)] = 30796, - [SMALL_STATE(747)] = 30823, - [SMALL_STATE(748)] = 30850, - [SMALL_STATE(749)] = 30877, - [SMALL_STATE(750)] = 30904, - [SMALL_STATE(751)] = 30931, - [SMALL_STATE(752)] = 30976, - [SMALL_STATE(753)] = 31003, - [SMALL_STATE(754)] = 31030, - [SMALL_STATE(755)] = 31057, - [SMALL_STATE(756)] = 31084, - [SMALL_STATE(757)] = 31111, - [SMALL_STATE(758)] = 31138, - [SMALL_STATE(759)] = 31165, - [SMALL_STATE(760)] = 31192, - [SMALL_STATE(761)] = 31219, - [SMALL_STATE(762)] = 31246, - [SMALL_STATE(763)] = 31273, - [SMALL_STATE(764)] = 31300, - [SMALL_STATE(765)] = 31327, - [SMALL_STATE(766)] = 31354, - [SMALL_STATE(767)] = 31381, - [SMALL_STATE(768)] = 31408, - [SMALL_STATE(769)] = 31435, - [SMALL_STATE(770)] = 31462, - [SMALL_STATE(771)] = 31489, - [SMALL_STATE(772)] = 31516, - [SMALL_STATE(773)] = 31543, - [SMALL_STATE(774)] = 31570, - [SMALL_STATE(775)] = 31597, - [SMALL_STATE(776)] = 31624, - [SMALL_STATE(777)] = 31651, - [SMALL_STATE(778)] = 31678, - [SMALL_STATE(779)] = 31705, - [SMALL_STATE(780)] = 31732, - [SMALL_STATE(781)] = 31759, - [SMALL_STATE(782)] = 31786, - [SMALL_STATE(783)] = 31813, - [SMALL_STATE(784)] = 31840, - [SMALL_STATE(785)] = 31867, - [SMALL_STATE(786)] = 31894, - [SMALL_STATE(787)] = 31921, - [SMALL_STATE(788)] = 31948, - [SMALL_STATE(789)] = 31975, - [SMALL_STATE(790)] = 32002, - [SMALL_STATE(791)] = 32029, - [SMALL_STATE(792)] = 32056, - [SMALL_STATE(793)] = 32083, - [SMALL_STATE(794)] = 32110, - [SMALL_STATE(795)] = 32137, - [SMALL_STATE(796)] = 32164, - [SMALL_STATE(797)] = 32191, - [SMALL_STATE(798)] = 32218, - [SMALL_STATE(799)] = 32245, - [SMALL_STATE(800)] = 32272, - [SMALL_STATE(801)] = 32299, - [SMALL_STATE(802)] = 32326, - [SMALL_STATE(803)] = 32353, - [SMALL_STATE(804)] = 32380, - [SMALL_STATE(805)] = 32408, - [SMALL_STATE(806)] = 32436, - [SMALL_STATE(807)] = 32470, - [SMALL_STATE(808)] = 32498, - [SMALL_STATE(809)] = 32526, - [SMALL_STATE(810)] = 32555, - [SMALL_STATE(811)] = 32584, - [SMALL_STATE(812)] = 32613, - [SMALL_STATE(813)] = 32642, - [SMALL_STATE(814)] = 32666, - [SMALL_STATE(815)] = 32690, - [SMALL_STATE(816)] = 32714, - [SMALL_STATE(817)] = 32748, - [SMALL_STATE(818)] = 32772, - [SMALL_STATE(819)] = 32796, - [SMALL_STATE(820)] = 32820, - [SMALL_STATE(821)] = 32845, - [SMALL_STATE(822)] = 32868, - [SMALL_STATE(823)] = 32893, - [SMALL_STATE(824)] = 32916, - [SMALL_STATE(825)] = 32941, - [SMALL_STATE(826)] = 32966, - [SMALL_STATE(827)] = 32991, - [SMALL_STATE(828)] = 33016, - [SMALL_STATE(829)] = 33041, - [SMALL_STATE(830)] = 33066, - [SMALL_STATE(831)] = 33089, - [SMALL_STATE(832)] = 33114, - [SMALL_STATE(833)] = 33139, - [SMALL_STATE(834)] = 33164, - [SMALL_STATE(835)] = 33187, - [SMALL_STATE(836)] = 33210, - [SMALL_STATE(837)] = 33235, - [SMALL_STATE(838)] = 33260, - [SMALL_STATE(839)] = 33285, - [SMALL_STATE(840)] = 33308, - [SMALL_STATE(841)] = 33345, - [SMALL_STATE(842)] = 33370, - [SMALL_STATE(843)] = 33403, - [SMALL_STATE(844)] = 33428, - [SMALL_STATE(845)] = 33452, - [SMALL_STATE(846)] = 33486, - [SMALL_STATE(847)] = 33508, - [SMALL_STATE(848)] = 33532, - [SMALL_STATE(849)] = 33554, - [SMALL_STATE(850)] = 33578, - [SMALL_STATE(851)] = 33606, - [SMALL_STATE(852)] = 33630, - [SMALL_STATE(853)] = 33654, - [SMALL_STATE(854)] = 33676, - [SMALL_STATE(855)] = 33710, - [SMALL_STATE(856)] = 33732, - [SMALL_STATE(857)] = 33756, - [SMALL_STATE(858)] = 33778, - [SMALL_STATE(859)] = 33800, - [SMALL_STATE(860)] = 33822, - [SMALL_STATE(861)] = 33844, - [SMALL_STATE(862)] = 33868, - [SMALL_STATE(863)] = 33899, - [SMALL_STATE(864)] = 33922, - [SMALL_STATE(865)] = 33945, - [SMALL_STATE(866)] = 33970, - [SMALL_STATE(867)] = 33996, - [SMALL_STATE(868)] = 34034, - [SMALL_STATE(869)] = 34060, - [SMALL_STATE(870)] = 34086, - [SMALL_STATE(871)] = 34112, - [SMALL_STATE(872)] = 34145, - [SMALL_STATE(873)] = 34166, - [SMALL_STATE(874)] = 34185, - [SMALL_STATE(875)] = 34206, - [SMALL_STATE(876)] = 34225, - [SMALL_STATE(877)] = 34244, - [SMALL_STATE(878)] = 34263, - [SMALL_STATE(879)] = 34284, - [SMALL_STATE(880)] = 34317, - [SMALL_STATE(881)] = 34350, - [SMALL_STATE(882)] = 34383, - [SMALL_STATE(883)] = 34402, - [SMALL_STATE(884)] = 34423, - [SMALL_STATE(885)] = 34456, - [SMALL_STATE(886)] = 34487, - [SMALL_STATE(887)] = 34517, - [SMALL_STATE(888)] = 34545, - [SMALL_STATE(889)] = 34563, - [SMALL_STATE(890)] = 34593, - [SMALL_STATE(891)] = 34611, - [SMALL_STATE(892)] = 34629, - [SMALL_STATE(893)] = 34659, - [SMALL_STATE(894)] = 34677, - [SMALL_STATE(895)] = 34695, - [SMALL_STATE(896)] = 34725, - [SMALL_STATE(897)] = 34743, - [SMALL_STATE(898)] = 34761, - [SMALL_STATE(899)] = 34779, - [SMALL_STATE(900)] = 34797, - [SMALL_STATE(901)] = 34827, - [SMALL_STATE(902)] = 34845, - [SMALL_STATE(903)] = 34875, - [SMALL_STATE(904)] = 34893, - [SMALL_STATE(905)] = 34923, - [SMALL_STATE(906)] = 34953, - [SMALL_STATE(907)] = 34983, - [SMALL_STATE(908)] = 35013, - [SMALL_STATE(909)] = 35031, - [SMALL_STATE(910)] = 35049, - [SMALL_STATE(911)] = 35067, - [SMALL_STATE(912)] = 35097, - [SMALL_STATE(913)] = 35115, - [SMALL_STATE(914)] = 35133, - [SMALL_STATE(915)] = 35151, - [SMALL_STATE(916)] = 35169, - [SMALL_STATE(917)] = 35187, - [SMALL_STATE(918)] = 35205, - [SMALL_STATE(919)] = 35223, - [SMALL_STATE(920)] = 35241, - [SMALL_STATE(921)] = 35269, - [SMALL_STATE(922)] = 35287, - [SMALL_STATE(923)] = 35305, - [SMALL_STATE(924)] = 35323, - [SMALL_STATE(925)] = 35341, - [SMALL_STATE(926)] = 35359, - [SMALL_STATE(927)] = 35389, - [SMALL_STATE(928)] = 35407, - [SMALL_STATE(929)] = 35425, - [SMALL_STATE(930)] = 35452, - [SMALL_STATE(931)] = 35483, - [SMALL_STATE(932)] = 35510, - [SMALL_STATE(933)] = 35537, - [SMALL_STATE(934)] = 35564, - [SMALL_STATE(935)] = 35583, - [SMALL_STATE(936)] = 35610, - [SMALL_STATE(937)] = 35637, - [SMALL_STATE(938)] = 35664, - [SMALL_STATE(939)] = 35691, - [SMALL_STATE(940)] = 35708, - [SMALL_STATE(941)] = 35733, - [SMALL_STATE(942)] = 35762, - [SMALL_STATE(943)] = 35793, - [SMALL_STATE(944)] = 35821, - [SMALL_STATE(945)] = 35845, - [SMALL_STATE(946)] = 35873, - [SMALL_STATE(947)] = 35901, - [SMALL_STATE(948)] = 35929, - [SMALL_STATE(949)] = 35957, - [SMALL_STATE(950)] = 35985, - [SMALL_STATE(951)] = 36013, - [SMALL_STATE(952)] = 36041, - [SMALL_STATE(953)] = 36067, - [SMALL_STATE(954)] = 36095, - [SMALL_STATE(955)] = 36119, - [SMALL_STATE(956)] = 36147, - [SMALL_STATE(957)] = 36173, - [SMALL_STATE(958)] = 36201, - [SMALL_STATE(959)] = 36229, - [SMALL_STATE(960)] = 36254, - [SMALL_STATE(961)] = 36273, - [SMALL_STATE(962)] = 36296, - [SMALL_STATE(963)] = 36315, - [SMALL_STATE(964)] = 36334, - [SMALL_STATE(965)] = 36357, - [SMALL_STATE(966)] = 36380, - [SMALL_STATE(967)] = 36405, - [SMALL_STATE(968)] = 36430, - [SMALL_STATE(969)] = 36455, - [SMALL_STATE(970)] = 36474, - [SMALL_STATE(971)] = 36495, - [SMALL_STATE(972)] = 36518, - [SMALL_STATE(973)] = 36543, - [SMALL_STATE(974)] = 36568, - [SMALL_STATE(975)] = 36591, - [SMALL_STATE(976)] = 36610, - [SMALL_STATE(977)] = 36629, - [SMALL_STATE(978)] = 36648, - [SMALL_STATE(979)] = 36667, - [SMALL_STATE(980)] = 36690, - [SMALL_STATE(981)] = 36713, - [SMALL_STATE(982)] = 36734, - [SMALL_STATE(983)] = 36755, - [SMALL_STATE(984)] = 36780, - [SMALL_STATE(985)] = 36805, - [SMALL_STATE(986)] = 36825, - [SMALL_STATE(987)] = 36847, - [SMALL_STATE(988)] = 36867, - [SMALL_STATE(989)] = 36889, - [SMALL_STATE(990)] = 36909, - [SMALL_STATE(991)] = 36931, - [SMALL_STATE(992)] = 36953, - [SMALL_STATE(993)] = 36973, - [SMALL_STATE(994)] = 36995, - [SMALL_STATE(995)] = 37015, - [SMALL_STATE(996)] = 37037, - [SMALL_STATE(997)] = 37059, - [SMALL_STATE(998)] = 37079, - [SMALL_STATE(999)] = 37099, - [SMALL_STATE(1000)] = 37121, - [SMALL_STATE(1001)] = 37141, - [SMALL_STATE(1002)] = 37163, - [SMALL_STATE(1003)] = 37181, - [SMALL_STATE(1004)] = 37201, - [SMALL_STATE(1005)] = 37219, - [SMALL_STATE(1006)] = 37239, - [SMALL_STATE(1007)] = 37261, - [SMALL_STATE(1008)] = 37283, - [SMALL_STATE(1009)] = 37299, - [SMALL_STATE(1010)] = 37321, - [SMALL_STATE(1011)] = 37343, - [SMALL_STATE(1012)] = 37365, - [SMALL_STATE(1013)] = 37385, - [SMALL_STATE(1014)] = 37407, - [SMALL_STATE(1015)] = 37427, - [SMALL_STATE(1016)] = 37449, - [SMALL_STATE(1017)] = 37471, - [SMALL_STATE(1018)] = 37491, - [SMALL_STATE(1019)] = 37510, - [SMALL_STATE(1020)] = 37527, - [SMALL_STATE(1021)] = 37546, - [SMALL_STATE(1022)] = 37565, - [SMALL_STATE(1023)] = 37584, - [SMALL_STATE(1024)] = 37603, - [SMALL_STATE(1025)] = 37622, - [SMALL_STATE(1026)] = 37639, - [SMALL_STATE(1027)] = 37652, - [SMALL_STATE(1028)] = 37671, - [SMALL_STATE(1029)] = 37690, - [SMALL_STATE(1030)] = 37705, - [SMALL_STATE(1031)] = 37724, - [SMALL_STATE(1032)] = 37743, - [SMALL_STATE(1033)] = 37756, - [SMALL_STATE(1034)] = 37773, - [SMALL_STATE(1035)] = 37792, - [SMALL_STATE(1036)] = 37811, - [SMALL_STATE(1037)] = 37830, - [SMALL_STATE(1038)] = 37849, - [SMALL_STATE(1039)] = 37868, - [SMALL_STATE(1040)] = 37883, - [SMALL_STATE(1041)] = 37902, - [SMALL_STATE(1042)] = 37921, - [SMALL_STATE(1043)] = 37940, - [SMALL_STATE(1044)] = 37959, - [SMALL_STATE(1045)] = 37978, - [SMALL_STATE(1046)] = 37995, - [SMALL_STATE(1047)] = 38014, - [SMALL_STATE(1048)] = 38033, - [SMALL_STATE(1049)] = 38052, - [SMALL_STATE(1050)] = 38067, - [SMALL_STATE(1051)] = 38086, - [SMALL_STATE(1052)] = 38101, - [SMALL_STATE(1053)] = 38118, - [SMALL_STATE(1054)] = 38137, - [SMALL_STATE(1055)] = 38156, - [SMALL_STATE(1056)] = 38175, - [SMALL_STATE(1057)] = 38190, - [SMALL_STATE(1058)] = 38209, - [SMALL_STATE(1059)] = 38226, - [SMALL_STATE(1060)] = 38245, - [SMALL_STATE(1061)] = 38264, - [SMALL_STATE(1062)] = 38283, - [SMALL_STATE(1063)] = 38302, - [SMALL_STATE(1064)] = 38321, - [SMALL_STATE(1065)] = 38340, - [SMALL_STATE(1066)] = 38357, - [SMALL_STATE(1067)] = 38376, - [SMALL_STATE(1068)] = 38395, - [SMALL_STATE(1069)] = 38414, - [SMALL_STATE(1070)] = 38433, - [SMALL_STATE(1071)] = 38452, - [SMALL_STATE(1072)] = 38471, - [SMALL_STATE(1073)] = 38490, - [SMALL_STATE(1074)] = 38509, - [SMALL_STATE(1075)] = 38528, - [SMALL_STATE(1076)] = 38547, - [SMALL_STATE(1077)] = 38566, - [SMALL_STATE(1078)] = 38585, - [SMALL_STATE(1079)] = 38600, - [SMALL_STATE(1080)] = 38619, - [SMALL_STATE(1081)] = 38638, - [SMALL_STATE(1082)] = 38657, - [SMALL_STATE(1083)] = 38674, - [SMALL_STATE(1084)] = 38693, - [SMALL_STATE(1085)] = 38708, - [SMALL_STATE(1086)] = 38727, - [SMALL_STATE(1087)] = 38746, - [SMALL_STATE(1088)] = 38765, - [SMALL_STATE(1089)] = 38780, - [SMALL_STATE(1090)] = 38799, - [SMALL_STATE(1091)] = 38818, - [SMALL_STATE(1092)] = 38837, - [SMALL_STATE(1093)] = 38856, - [SMALL_STATE(1094)] = 38875, - [SMALL_STATE(1095)] = 38894, - [SMALL_STATE(1096)] = 38913, - [SMALL_STATE(1097)] = 38928, - [SMALL_STATE(1098)] = 38947, - [SMALL_STATE(1099)] = 38966, - [SMALL_STATE(1100)] = 38985, - [SMALL_STATE(1101)] = 39004, - [SMALL_STATE(1102)] = 39019, - [SMALL_STATE(1103)] = 39036, - [SMALL_STATE(1104)] = 39055, - [SMALL_STATE(1105)] = 39074, - [SMALL_STATE(1106)] = 39093, - [SMALL_STATE(1107)] = 39112, - [SMALL_STATE(1108)] = 39131, - [SMALL_STATE(1109)] = 39150, - [SMALL_STATE(1110)] = 39169, - [SMALL_STATE(1111)] = 39188, - [SMALL_STATE(1112)] = 39207, - [SMALL_STATE(1113)] = 39226, - [SMALL_STATE(1114)] = 39238, - [SMALL_STATE(1115)] = 39254, - [SMALL_STATE(1116)] = 39270, - [SMALL_STATE(1117)] = 39286, - [SMALL_STATE(1118)] = 39302, - [SMALL_STATE(1119)] = 39318, - [SMALL_STATE(1120)] = 39334, - [SMALL_STATE(1121)] = 39348, - [SMALL_STATE(1122)] = 39364, - [SMALL_STATE(1123)] = 39378, - [SMALL_STATE(1124)] = 39394, - [SMALL_STATE(1125)] = 39408, - [SMALL_STATE(1126)] = 39422, - [SMALL_STATE(1127)] = 39438, - [SMALL_STATE(1128)] = 39454, - [SMALL_STATE(1129)] = 39470, - [SMALL_STATE(1130)] = 39486, - [SMALL_STATE(1131)] = 39500, - [SMALL_STATE(1132)] = 39514, - [SMALL_STATE(1133)] = 39530, - [SMALL_STATE(1134)] = 39546, - [SMALL_STATE(1135)] = 39562, - [SMALL_STATE(1136)] = 39578, - [SMALL_STATE(1137)] = 39594, - [SMALL_STATE(1138)] = 39610, - [SMALL_STATE(1139)] = 39626, - [SMALL_STATE(1140)] = 39642, - [SMALL_STATE(1141)] = 39658, - [SMALL_STATE(1142)] = 39672, - [SMALL_STATE(1143)] = 39688, - [SMALL_STATE(1144)] = 39702, - [SMALL_STATE(1145)] = 39716, - [SMALL_STATE(1146)] = 39732, - [SMALL_STATE(1147)] = 39748, - [SMALL_STATE(1148)] = 39764, - [SMALL_STATE(1149)] = 39780, - [SMALL_STATE(1150)] = 39792, - [SMALL_STATE(1151)] = 39804, - [SMALL_STATE(1152)] = 39816, - [SMALL_STATE(1153)] = 39828, - [SMALL_STATE(1154)] = 39840, - [SMALL_STATE(1155)] = 39852, - [SMALL_STATE(1156)] = 39864, - [SMALL_STATE(1157)] = 39876, - [SMALL_STATE(1158)] = 39888, - [SMALL_STATE(1159)] = 39904, - [SMALL_STATE(1160)] = 39916, - [SMALL_STATE(1161)] = 39928, - [SMALL_STATE(1162)] = 39940, - [SMALL_STATE(1163)] = 39952, - [SMALL_STATE(1164)] = 39964, - [SMALL_STATE(1165)] = 39976, - [SMALL_STATE(1166)] = 39992, - [SMALL_STATE(1167)] = 40008, - [SMALL_STATE(1168)] = 40024, - [SMALL_STATE(1169)] = 40040, - [SMALL_STATE(1170)] = 40056, - [SMALL_STATE(1171)] = 40068, - [SMALL_STATE(1172)] = 40084, - [SMALL_STATE(1173)] = 40096, - [SMALL_STATE(1174)] = 40110, - [SMALL_STATE(1175)] = 40122, - [SMALL_STATE(1176)] = 40138, - [SMALL_STATE(1177)] = 40154, - [SMALL_STATE(1178)] = 40170, - [SMALL_STATE(1179)] = 40186, - [SMALL_STATE(1180)] = 40202, - [SMALL_STATE(1181)] = 40214, - [SMALL_STATE(1182)] = 40230, - [SMALL_STATE(1183)] = 40244, - [SMALL_STATE(1184)] = 40260, - [SMALL_STATE(1185)] = 40276, - [SMALL_STATE(1186)] = 40292, - [SMALL_STATE(1187)] = 40308, - [SMALL_STATE(1188)] = 40322, - [SMALL_STATE(1189)] = 40338, - [SMALL_STATE(1190)] = 40354, - [SMALL_STATE(1191)] = 40370, - [SMALL_STATE(1192)] = 40386, - [SMALL_STATE(1193)] = 40400, - [SMALL_STATE(1194)] = 40416, - [SMALL_STATE(1195)] = 40428, - [SMALL_STATE(1196)] = 40440, - [SMALL_STATE(1197)] = 40456, - [SMALL_STATE(1198)] = 40472, - [SMALL_STATE(1199)] = 40488, - [SMALL_STATE(1200)] = 40504, - [SMALL_STATE(1201)] = 40520, - [SMALL_STATE(1202)] = 40536, - [SMALL_STATE(1203)] = 40552, - [SMALL_STATE(1204)] = 40564, - [SMALL_STATE(1205)] = 40578, - [SMALL_STATE(1206)] = 40594, - [SMALL_STATE(1207)] = 40610, - [SMALL_STATE(1208)] = 40626, - [SMALL_STATE(1209)] = 40642, - [SMALL_STATE(1210)] = 40658, - [SMALL_STATE(1211)] = 40672, - [SMALL_STATE(1212)] = 40688, - [SMALL_STATE(1213)] = 40700, - [SMALL_STATE(1214)] = 40716, - [SMALL_STATE(1215)] = 40732, - [SMALL_STATE(1216)] = 40748, - [SMALL_STATE(1217)] = 40760, - [SMALL_STATE(1218)] = 40776, - [SMALL_STATE(1219)] = 40792, - [SMALL_STATE(1220)] = 40808, - [SMALL_STATE(1221)] = 40824, - [SMALL_STATE(1222)] = 40840, - [SMALL_STATE(1223)] = 40856, - [SMALL_STATE(1224)] = 40872, - [SMALL_STATE(1225)] = 40888, - [SMALL_STATE(1226)] = 40904, - [SMALL_STATE(1227)] = 40920, - [SMALL_STATE(1228)] = 40932, - [SMALL_STATE(1229)] = 40948, - [SMALL_STATE(1230)] = 40960, - [SMALL_STATE(1231)] = 40976, - [SMALL_STATE(1232)] = 40992, - [SMALL_STATE(1233)] = 41008, - [SMALL_STATE(1234)] = 41024, - [SMALL_STATE(1235)] = 41038, - [SMALL_STATE(1236)] = 41054, - [SMALL_STATE(1237)] = 41070, - [SMALL_STATE(1238)] = 41086, - [SMALL_STATE(1239)] = 41102, - [SMALL_STATE(1240)] = 41118, - [SMALL_STATE(1241)] = 41134, - [SMALL_STATE(1242)] = 41150, - [SMALL_STATE(1243)] = 41166, - [SMALL_STATE(1244)] = 41178, - [SMALL_STATE(1245)] = 41194, - [SMALL_STATE(1246)] = 41210, - [SMALL_STATE(1247)] = 41226, - [SMALL_STATE(1248)] = 41240, - [SMALL_STATE(1249)] = 41256, - [SMALL_STATE(1250)] = 41272, - [SMALL_STATE(1251)] = 41288, - [SMALL_STATE(1252)] = 41300, - [SMALL_STATE(1253)] = 41316, - [SMALL_STATE(1254)] = 41332, - [SMALL_STATE(1255)] = 41348, - [SMALL_STATE(1256)] = 41364, - [SMALL_STATE(1257)] = 41380, - [SMALL_STATE(1258)] = 41391, - [SMALL_STATE(1259)] = 41402, - [SMALL_STATE(1260)] = 41415, - [SMALL_STATE(1261)] = 41426, - [SMALL_STATE(1262)] = 41439, - [SMALL_STATE(1263)] = 41452, - [SMALL_STATE(1264)] = 41463, - [SMALL_STATE(1265)] = 41474, - [SMALL_STATE(1266)] = 41487, - [SMALL_STATE(1267)] = 41500, - [SMALL_STATE(1268)] = 41513, - [SMALL_STATE(1269)] = 41526, - [SMALL_STATE(1270)] = 41539, - [SMALL_STATE(1271)] = 41550, - [SMALL_STATE(1272)] = 41561, - [SMALL_STATE(1273)] = 41574, - [SMALL_STATE(1274)] = 41585, - [SMALL_STATE(1275)] = 41598, - [SMALL_STATE(1276)] = 41611, - [SMALL_STATE(1277)] = 41624, - [SMALL_STATE(1278)] = 41637, - [SMALL_STATE(1279)] = 41650, - [SMALL_STATE(1280)] = 41661, - [SMALL_STATE(1281)] = 41674, - [SMALL_STATE(1282)] = 41687, - [SMALL_STATE(1283)] = 41698, - [SMALL_STATE(1284)] = 41711, - [SMALL_STATE(1285)] = 41724, - [SMALL_STATE(1286)] = 41735, - [SMALL_STATE(1287)] = 41748, - [SMALL_STATE(1288)] = 41761, - [SMALL_STATE(1289)] = 41774, - [SMALL_STATE(1290)] = 41785, - [SMALL_STATE(1291)] = 41798, - [SMALL_STATE(1292)] = 41809, - [SMALL_STATE(1293)] = 41822, - [SMALL_STATE(1294)] = 41835, - [SMALL_STATE(1295)] = 41848, - [SMALL_STATE(1296)] = 41861, - [SMALL_STATE(1297)] = 41872, - [SMALL_STATE(1298)] = 41885, - [SMALL_STATE(1299)] = 41898, - [SMALL_STATE(1300)] = 41911, - [SMALL_STATE(1301)] = 41922, - [SMALL_STATE(1302)] = 41933, - [SMALL_STATE(1303)] = 41946, - [SMALL_STATE(1304)] = 41959, - [SMALL_STATE(1305)] = 41972, - [SMALL_STATE(1306)] = 41985, - [SMALL_STATE(1307)] = 41998, - [SMALL_STATE(1308)] = 42009, - [SMALL_STATE(1309)] = 42022, - [SMALL_STATE(1310)] = 42035, - [SMALL_STATE(1311)] = 42048, - [SMALL_STATE(1312)] = 42059, - [SMALL_STATE(1313)] = 42072, - [SMALL_STATE(1314)] = 42085, - [SMALL_STATE(1315)] = 42098, - [SMALL_STATE(1316)] = 42111, - [SMALL_STATE(1317)] = 42122, - [SMALL_STATE(1318)] = 42133, - [SMALL_STATE(1319)] = 42146, - [SMALL_STATE(1320)] = 42159, - [SMALL_STATE(1321)] = 42170, - [SMALL_STATE(1322)] = 42183, - [SMALL_STATE(1323)] = 42196, - [SMALL_STATE(1324)] = 42209, - [SMALL_STATE(1325)] = 42220, - [SMALL_STATE(1326)] = 42231, - [SMALL_STATE(1327)] = 42244, - [SMALL_STATE(1328)] = 42257, - [SMALL_STATE(1329)] = 42270, - [SMALL_STATE(1330)] = 42283, - [SMALL_STATE(1331)] = 42296, - [SMALL_STATE(1332)] = 42309, - [SMALL_STATE(1333)] = 42322, - [SMALL_STATE(1334)] = 42335, - [SMALL_STATE(1335)] = 42346, - [SMALL_STATE(1336)] = 42359, - [SMALL_STATE(1337)] = 42370, - [SMALL_STATE(1338)] = 42383, - [SMALL_STATE(1339)] = 42396, - [SMALL_STATE(1340)] = 42407, - [SMALL_STATE(1341)] = 42418, - [SMALL_STATE(1342)] = 42431, - [SMALL_STATE(1343)] = 42442, - [SMALL_STATE(1344)] = 42453, - [SMALL_STATE(1345)] = 42466, - [SMALL_STATE(1346)] = 42479, - [SMALL_STATE(1347)] = 42490, - [SMALL_STATE(1348)] = 42503, - [SMALL_STATE(1349)] = 42516, - [SMALL_STATE(1350)] = 42526, - [SMALL_STATE(1351)] = 42536, - [SMALL_STATE(1352)] = 42546, - [SMALL_STATE(1353)] = 42556, - [SMALL_STATE(1354)] = 42566, - [SMALL_STATE(1355)] = 42576, - [SMALL_STATE(1356)] = 42586, - [SMALL_STATE(1357)] = 42596, - [SMALL_STATE(1358)] = 42606, - [SMALL_STATE(1359)] = 42616, - [SMALL_STATE(1360)] = 42626, - [SMALL_STATE(1361)] = 42636, - [SMALL_STATE(1362)] = 42646, - [SMALL_STATE(1363)] = 42656, - [SMALL_STATE(1364)] = 42666, - [SMALL_STATE(1365)] = 42676, - [SMALL_STATE(1366)] = 42686, - [SMALL_STATE(1367)] = 42696, - [SMALL_STATE(1368)] = 42706, - [SMALL_STATE(1369)] = 42716, - [SMALL_STATE(1370)] = 42726, - [SMALL_STATE(1371)] = 42736, - [SMALL_STATE(1372)] = 42746, - [SMALL_STATE(1373)] = 42756, - [SMALL_STATE(1374)] = 42766, - [SMALL_STATE(1375)] = 42776, - [SMALL_STATE(1376)] = 42786, - [SMALL_STATE(1377)] = 42796, - [SMALL_STATE(1378)] = 42806, - [SMALL_STATE(1379)] = 42816, - [SMALL_STATE(1380)] = 42826, - [SMALL_STATE(1381)] = 42836, - [SMALL_STATE(1382)] = 42846, - [SMALL_STATE(1383)] = 42856, - [SMALL_STATE(1384)] = 42866, - [SMALL_STATE(1385)] = 42876, - [SMALL_STATE(1386)] = 42886, - [SMALL_STATE(1387)] = 42896, - [SMALL_STATE(1388)] = 42906, - [SMALL_STATE(1389)] = 42916, - [SMALL_STATE(1390)] = 42926, - [SMALL_STATE(1391)] = 42936, - [SMALL_STATE(1392)] = 42946, - [SMALL_STATE(1393)] = 42956, - [SMALL_STATE(1394)] = 42966, - [SMALL_STATE(1395)] = 42976, - [SMALL_STATE(1396)] = 42986, - [SMALL_STATE(1397)] = 42996, - [SMALL_STATE(1398)] = 43006, - [SMALL_STATE(1399)] = 43016, - [SMALL_STATE(1400)] = 43026, - [SMALL_STATE(1401)] = 43036, - [SMALL_STATE(1402)] = 43046, - [SMALL_STATE(1403)] = 43056, - [SMALL_STATE(1404)] = 43066, - [SMALL_STATE(1405)] = 43076, - [SMALL_STATE(1406)] = 43086, - [SMALL_STATE(1407)] = 43096, - [SMALL_STATE(1408)] = 43106, - [SMALL_STATE(1409)] = 43116, - [SMALL_STATE(1410)] = 43126, - [SMALL_STATE(1411)] = 43136, - [SMALL_STATE(1412)] = 43146, - [SMALL_STATE(1413)] = 43156, - [SMALL_STATE(1414)] = 43166, - [SMALL_STATE(1415)] = 43176, - [SMALL_STATE(1416)] = 43186, - [SMALL_STATE(1417)] = 43196, - [SMALL_STATE(1418)] = 43206, - [SMALL_STATE(1419)] = 43216, - [SMALL_STATE(1420)] = 43226, - [SMALL_STATE(1421)] = 43236, - [SMALL_STATE(1422)] = 43246, - [SMALL_STATE(1423)] = 43256, - [SMALL_STATE(1424)] = 43266, - [SMALL_STATE(1425)] = 43276, - [SMALL_STATE(1426)] = 43286, - [SMALL_STATE(1427)] = 43296, - [SMALL_STATE(1428)] = 43306, - [SMALL_STATE(1429)] = 43316, - [SMALL_STATE(1430)] = 43326, - [SMALL_STATE(1431)] = 43336, - [SMALL_STATE(1432)] = 43346, - [SMALL_STATE(1433)] = 43356, - [SMALL_STATE(1434)] = 43366, - [SMALL_STATE(1435)] = 43376, - [SMALL_STATE(1436)] = 43386, - [SMALL_STATE(1437)] = 43396, - [SMALL_STATE(1438)] = 43406, - [SMALL_STATE(1439)] = 43416, - [SMALL_STATE(1440)] = 43426, - [SMALL_STATE(1441)] = 43436, - [SMALL_STATE(1442)] = 43446, - [SMALL_STATE(1443)] = 43456, - [SMALL_STATE(1444)] = 43466, - [SMALL_STATE(1445)] = 43476, - [SMALL_STATE(1446)] = 43486, - [SMALL_STATE(1447)] = 43496, - [SMALL_STATE(1448)] = 43506, - [SMALL_STATE(1449)] = 43516, - [SMALL_STATE(1450)] = 43526, - [SMALL_STATE(1451)] = 43536, - [SMALL_STATE(1452)] = 43546, - [SMALL_STATE(1453)] = 43556, - [SMALL_STATE(1454)] = 43566, - [SMALL_STATE(1455)] = 43576, - [SMALL_STATE(1456)] = 43586, - [SMALL_STATE(1457)] = 43596, - [SMALL_STATE(1458)] = 43606, - [SMALL_STATE(1459)] = 43616, - [SMALL_STATE(1460)] = 43626, - [SMALL_STATE(1461)] = 43636, - [SMALL_STATE(1462)] = 43646, - [SMALL_STATE(1463)] = 43656, - [SMALL_STATE(1464)] = 43666, - [SMALL_STATE(1465)] = 43676, - [SMALL_STATE(1466)] = 43686, - [SMALL_STATE(1467)] = 43696, - [SMALL_STATE(1468)] = 43706, - [SMALL_STATE(1469)] = 43716, - [SMALL_STATE(1470)] = 43726, - [SMALL_STATE(1471)] = 43736, - [SMALL_STATE(1472)] = 43746, - [SMALL_STATE(1473)] = 43756, - [SMALL_STATE(1474)] = 43766, - [SMALL_STATE(1475)] = 43776, - [SMALL_STATE(1476)] = 43786, - [SMALL_STATE(1477)] = 43796, - [SMALL_STATE(1478)] = 43806, - [SMALL_STATE(1479)] = 43816, - [SMALL_STATE(1480)] = 43826, - [SMALL_STATE(1481)] = 43836, - [SMALL_STATE(1482)] = 43846, - [SMALL_STATE(1483)] = 43856, - [SMALL_STATE(1484)] = 43866, - [SMALL_STATE(1485)] = 43876, - [SMALL_STATE(1486)] = 43886, - [SMALL_STATE(1487)] = 43896, - [SMALL_STATE(1488)] = 43906, - [SMALL_STATE(1489)] = 43916, - [SMALL_STATE(1490)] = 43926, - [SMALL_STATE(1491)] = 43936, - [SMALL_STATE(1492)] = 43946, - [SMALL_STATE(1493)] = 43956, + [SMALL_STATE(296)] = 0, + [SMALL_STATE(297)] = 73, + [SMALL_STATE(298)] = 146, + [SMALL_STATE(299)] = 219, + [SMALL_STATE(300)] = 292, + [SMALL_STATE(301)] = 365, + [SMALL_STATE(302)] = 441, + [SMALL_STATE(303)] = 581, + [SMALL_STATE(304)] = 718, + [SMALL_STATE(305)] = 791, + [SMALL_STATE(306)] = 928, + [SMALL_STATE(307)] = 1065, + [SMALL_STATE(308)] = 1202, + [SMALL_STATE(309)] = 1272, + [SMALL_STATE(310)] = 1342, + [SMALL_STATE(311)] = 1412, + [SMALL_STATE(312)] = 1546, + [SMALL_STATE(313)] = 1680, + [SMALL_STATE(314)] = 1750, + [SMALL_STATE(315)] = 1884, + [SMALL_STATE(316)] = 1954, + [SMALL_STATE(317)] = 2024, + [SMALL_STATE(318)] = 2094, + [SMALL_STATE(319)] = 2228, + [SMALL_STATE(320)] = 2362, + [SMALL_STATE(321)] = 2432, + [SMALL_STATE(322)] = 2566, + [SMALL_STATE(323)] = 2636, + [SMALL_STATE(324)] = 2706, + [SMALL_STATE(325)] = 2776, + [SMALL_STATE(326)] = 2910, + [SMALL_STATE(327)] = 2980, + [SMALL_STATE(328)] = 3050, + [SMALL_STATE(329)] = 3120, + [SMALL_STATE(330)] = 3190, + [SMALL_STATE(331)] = 3321, + [SMALL_STATE(332)] = 3446, + [SMALL_STATE(333)] = 3571, + [SMALL_STATE(334)] = 3696, + [SMALL_STATE(335)] = 3821, + [SMALL_STATE(336)] = 3946, + [SMALL_STATE(337)] = 4068, + [SMALL_STATE(338)] = 4190, + [SMALL_STATE(339)] = 4312, + [SMALL_STATE(340)] = 4431, + [SMALL_STATE(341)] = 4550, + [SMALL_STATE(342)] = 4669, + [SMALL_STATE(343)] = 4788, + [SMALL_STATE(344)] = 4907, + [SMALL_STATE(345)] = 5026, + [SMALL_STATE(346)] = 5145, + [SMALL_STATE(347)] = 5264, + [SMALL_STATE(348)] = 5383, + [SMALL_STATE(349)] = 5502, + [SMALL_STATE(350)] = 5621, + [SMALL_STATE(351)] = 5740, + [SMALL_STATE(352)] = 5859, + [SMALL_STATE(353)] = 5978, + [SMALL_STATE(354)] = 6097, + [SMALL_STATE(355)] = 6164, + [SMALL_STATE(356)] = 6229, + [SMALL_STATE(357)] = 6291, + [SMALL_STATE(358)] = 6353, + [SMALL_STATE(359)] = 6415, + [SMALL_STATE(360)] = 6476, + [SMALL_STATE(361)] = 6537, + [SMALL_STATE(362)] = 6646, + [SMALL_STATE(363)] = 6755, + [SMALL_STATE(364)] = 6864, + [SMALL_STATE(365)] = 6973, + [SMALL_STATE(366)] = 7079, + [SMALL_STATE(367)] = 7185, + [SMALL_STATE(368)] = 7291, + [SMALL_STATE(369)] = 7360, + [SMALL_STATE(370)] = 7424, + [SMALL_STATE(371)] = 7483, + [SMALL_STATE(372)] = 7542, + [SMALL_STATE(373)] = 7601, + [SMALL_STATE(374)] = 7660, + [SMALL_STATE(375)] = 7732, + [SMALL_STATE(376)] = 7786, + [SMALL_STATE(377)] = 7840, + [SMALL_STATE(378)] = 7896, + [SMALL_STATE(379)] = 7950, + [SMALL_STATE(380)] = 8006, + [SMALL_STATE(381)] = 8062, + [SMALL_STATE(382)] = 8116, + [SMALL_STATE(383)] = 8170, + [SMALL_STATE(384)] = 8224, + [SMALL_STATE(385)] = 8277, + [SMALL_STATE(386)] = 8330, + [SMALL_STATE(387)] = 8383, + [SMALL_STATE(388)] = 8436, + [SMALL_STATE(389)] = 8489, + [SMALL_STATE(390)] = 8542, + [SMALL_STATE(391)] = 8595, + [SMALL_STATE(392)] = 8648, + [SMALL_STATE(393)] = 8705, + [SMALL_STATE(394)] = 8760, + [SMALL_STATE(395)] = 8815, + [SMALL_STATE(396)] = 8868, + [SMALL_STATE(397)] = 8923, + [SMALL_STATE(398)] = 8976, + [SMALL_STATE(399)] = 9031, + [SMALL_STATE(400)] = 9084, + [SMALL_STATE(401)] = 9137, + [SMALL_STATE(402)] = 9190, + [SMALL_STATE(403)] = 9243, + [SMALL_STATE(404)] = 9296, + [SMALL_STATE(405)] = 9349, + [SMALL_STATE(406)] = 9402, + [SMALL_STATE(407)] = 9455, + [SMALL_STATE(408)] = 9508, + [SMALL_STATE(409)] = 9561, + [SMALL_STATE(410)] = 9614, + [SMALL_STATE(411)] = 9667, + [SMALL_STATE(412)] = 9720, + [SMALL_STATE(413)] = 9773, + [SMALL_STATE(414)] = 9826, + [SMALL_STATE(415)] = 9881, + [SMALL_STATE(416)] = 9938, + [SMALL_STATE(417)] = 9993, + [SMALL_STATE(418)] = 10052, + [SMALL_STATE(419)] = 10105, + [SMALL_STATE(420)] = 10158, + [SMALL_STATE(421)] = 10211, + [SMALL_STATE(422)] = 10263, + [SMALL_STATE(423)] = 10315, + [SMALL_STATE(424)] = 10367, + [SMALL_STATE(425)] = 10419, + [SMALL_STATE(426)] = 10475, + [SMALL_STATE(427)] = 10527, + [SMALL_STATE(428)] = 10579, + [SMALL_STATE(429)] = 10631, + [SMALL_STATE(430)] = 10683, + [SMALL_STATE(431)] = 10735, + [SMALL_STATE(432)] = 10787, + [SMALL_STATE(433)] = 10839, + [SMALL_STATE(434)] = 10891, + [SMALL_STATE(435)] = 10945, + [SMALL_STATE(436)] = 10997, + [SMALL_STATE(437)] = 11049, + [SMALL_STATE(438)] = 11101, + [SMALL_STATE(439)] = 11153, + [SMALL_STATE(440)] = 11205, + [SMALL_STATE(441)] = 11257, + [SMALL_STATE(442)] = 11309, + [SMALL_STATE(443)] = 11361, + [SMALL_STATE(444)] = 11413, + [SMALL_STATE(445)] = 11465, + [SMALL_STATE(446)] = 11517, + [SMALL_STATE(447)] = 11575, + [SMALL_STATE(448)] = 11629, + [SMALL_STATE(449)] = 11681, + [SMALL_STATE(450)] = 11733, + [SMALL_STATE(451)] = 11785, + [SMALL_STATE(452)] = 11837, + [SMALL_STATE(453)] = 11891, + [SMALL_STATE(454)] = 11943, + [SMALL_STATE(455)] = 11999, + [SMALL_STATE(456)] = 12053, + [SMALL_STATE(457)] = 12105, + [SMALL_STATE(458)] = 12157, + [SMALL_STATE(459)] = 12209, + [SMALL_STATE(460)] = 12261, + [SMALL_STATE(461)] = 12313, + [SMALL_STATE(462)] = 12365, + [SMALL_STATE(463)] = 12417, + [SMALL_STATE(464)] = 12469, + [SMALL_STATE(465)] = 12521, + [SMALL_STATE(466)] = 12573, + [SMALL_STATE(467)] = 12625, + [SMALL_STATE(468)] = 12677, + [SMALL_STATE(469)] = 12729, + [SMALL_STATE(470)] = 12782, + [SMALL_STATE(471)] = 12835, + [SMALL_STATE(472)] = 12888, + [SMALL_STATE(473)] = 12945, + [SMALL_STATE(474)] = 13002, + [SMALL_STATE(475)] = 13059, + [SMALL_STATE(476)] = 13116, + [SMALL_STATE(477)] = 13182, + [SMALL_STATE(478)] = 13236, + [SMALL_STATE(479)] = 13310, + [SMALL_STATE(480)] = 13382, + [SMALL_STATE(481)] = 13458, + [SMALL_STATE(482)] = 13538, + [SMALL_STATE(483)] = 13606, + [SMALL_STATE(484)] = 13682, + [SMALL_STATE(485)] = 13746, + [SMALL_STATE(486)] = 13808, + [SMALL_STATE(487)] = 13884, + [SMALL_STATE(488)] = 13960, + [SMALL_STATE(489)] = 14036, + [SMALL_STATE(490)] = 14112, + [SMALL_STATE(491)] = 14192, + [SMALL_STATE(492)] = 14268, + [SMALL_STATE(493)] = 14328, + [SMALL_STATE(494)] = 14408, + [SMALL_STATE(495)] = 14466, + [SMALL_STATE(496)] = 14519, + [SMALL_STATE(497)] = 14570, + [SMALL_STATE(498)] = 14623, + [SMALL_STATE(499)] = 14675, + [SMALL_STATE(500)] = 14755, + [SMALL_STATE(501)] = 14835, + [SMALL_STATE(502)] = 14915, + [SMALL_STATE(503)] = 14967, + [SMALL_STATE(504)] = 15015, + [SMALL_STATE(505)] = 15063, + [SMALL_STATE(506)] = 15111, + [SMALL_STATE(507)] = 15159, + [SMALL_STATE(508)] = 15239, + [SMALL_STATE(509)] = 15289, + [SMALL_STATE(510)] = 15369, + [SMALL_STATE(511)] = 15419, + [SMALL_STATE(512)] = 15469, + [SMALL_STATE(513)] = 15550, + [SMALL_STATE(514)] = 15609, + [SMALL_STATE(515)] = 15660, + [SMALL_STATE(516)] = 15721, + [SMALL_STATE(517)] = 15814, + [SMALL_STATE(518)] = 15895, + [SMALL_STATE(519)] = 15960, + [SMALL_STATE(520)] = 16023, + [SMALL_STATE(521)] = 16096, + [SMALL_STATE(522)] = 16151, + [SMALL_STATE(523)] = 16220, + [SMALL_STATE(524)] = 16301, + [SMALL_STATE(525)] = 16372, + [SMALL_STATE(526)] = 16429, + [SMALL_STATE(527)] = 16502, + [SMALL_STATE(528)] = 16579, + [SMALL_STATE(529)] = 16656, + [SMALL_STATE(530)] = 16729, + [SMALL_STATE(531)] = 16806, + [SMALL_STATE(532)] = 16887, + [SMALL_STATE(533)] = 16934, + [SMALL_STATE(534)] = 16985, + [SMALL_STATE(535)] = 17058, + [SMALL_STATE(536)] = 17131, + [SMALL_STATE(537)] = 17204, + [SMALL_STATE(538)] = 17251, + [SMALL_STATE(539)] = 17324, + [SMALL_STATE(540)] = 17400, + [SMALL_STATE(541)] = 17462, + [SMALL_STATE(542)] = 17552, + [SMALL_STATE(543)] = 17630, + [SMALL_STATE(544)] = 17690, + [SMALL_STATE(545)] = 17748, + [SMALL_STATE(546)] = 17820, + [SMALL_STATE(547)] = 17898, + [SMALL_STATE(548)] = 17988, + [SMALL_STATE(549)] = 18066, + [SMALL_STATE(550)] = 18142, + [SMALL_STATE(551)] = 18218, + [SMALL_STATE(552)] = 18294, + [SMALL_STATE(553)] = 18370, + [SMALL_STATE(554)] = 18446, + [SMALL_STATE(555)] = 18500, + [SMALL_STATE(556)] = 18576, + [SMALL_STATE(557)] = 18654, + [SMALL_STATE(558)] = 18728, + [SMALL_STATE(559)] = 18806, + [SMALL_STATE(560)] = 18882, + [SMALL_STATE(561)] = 18958, + [SMALL_STATE(562)] = 19022, + [SMALL_STATE(563)] = 19100, + [SMALL_STATE(564)] = 19176, + [SMALL_STATE(565)] = 19250, + [SMALL_STATE(566)] = 19326, + [SMALL_STATE(567)] = 19404, + [SMALL_STATE(568)] = 19494, + [SMALL_STATE(569)] = 19572, + [SMALL_STATE(570)] = 19650, + [SMALL_STATE(571)] = 19722, + [SMALL_STATE(572)] = 19794, + [SMALL_STATE(573)] = 19850, + [SMALL_STATE(574)] = 19928, + [SMALL_STATE(575)] = 20004, + [SMALL_STATE(576)] = 20082, + [SMALL_STATE(577)] = 20158, + [SMALL_STATE(578)] = 20234, + [SMALL_STATE(579)] = 20312, + [SMALL_STATE(580)] = 20402, + [SMALL_STATE(581)] = 20480, + [SMALL_STATE(582)] = 20550, + [SMALL_STATE(583)] = 20618, + [SMALL_STATE(584)] = 20690, + [SMALL_STATE(585)] = 20780, + [SMALL_STATE(586)] = 20856, + [SMALL_STATE(587)] = 20932, + [SMALL_STATE(588)] = 21010, + [SMALL_STATE(589)] = 21088, + [SMALL_STATE(590)] = 21178, + [SMALL_STATE(591)] = 21256, + [SMALL_STATE(592)] = 21334, + [SMALL_STATE(593)] = 21410, + [SMALL_STATE(594)] = 21482, + [SMALL_STATE(595)] = 21558, + [SMALL_STATE(596)] = 21636, + [SMALL_STATE(597)] = 21708, + [SMALL_STATE(598)] = 21780, + [SMALL_STATE(599)] = 21858, + [SMALL_STATE(600)] = 21936, + [SMALL_STATE(601)] = 22014, + [SMALL_STATE(602)] = 22092, + [SMALL_STATE(603)] = 22167, + [SMALL_STATE(604)] = 22242, + [SMALL_STATE(605)] = 22317, + [SMALL_STATE(606)] = 22392, + [SMALL_STATE(607)] = 22465, + [SMALL_STATE(608)] = 22540, + [SMALL_STATE(609)] = 22615, + [SMALL_STATE(610)] = 22690, + [SMALL_STATE(611)] = 22765, + [SMALL_STATE(612)] = 22840, + [SMALL_STATE(613)] = 22927, + [SMALL_STATE(614)] = 23014, + [SMALL_STATE(615)] = 23089, + [SMALL_STATE(616)] = 23164, + [SMALL_STATE(617)] = 23239, + [SMALL_STATE(618)] = 23314, + [SMALL_STATE(619)] = 23389, + [SMALL_STATE(620)] = 23462, + [SMALL_STATE(621)] = 23537, + [SMALL_STATE(622)] = 23612, + [SMALL_STATE(623)] = 23687, + [SMALL_STATE(624)] = 23762, + [SMALL_STATE(625)] = 23849, + [SMALL_STATE(626)] = 23924, + [SMALL_STATE(627)] = 23999, + [SMALL_STATE(628)] = 24074, + [SMALL_STATE(629)] = 24158, + [SMALL_STATE(630)] = 24229, + [SMALL_STATE(631)] = 24272, + [SMALL_STATE(632)] = 24343, + [SMALL_STATE(633)] = 24418, + [SMALL_STATE(634)] = 24493, + [SMALL_STATE(635)] = 24568, + [SMALL_STATE(636)] = 24643, + [SMALL_STATE(637)] = 24718, + [SMALL_STATE(638)] = 24793, + [SMALL_STATE(639)] = 24868, + [SMALL_STATE(640)] = 24943, + [SMALL_STATE(641)] = 25018, + [SMALL_STATE(642)] = 25093, + [SMALL_STATE(643)] = 25168, + [SMALL_STATE(644)] = 25243, + [SMALL_STATE(645)] = 25318, + [SMALL_STATE(646)] = 25393, + [SMALL_STATE(647)] = 25468, + [SMALL_STATE(648)] = 25540, + [SMALL_STATE(649)] = 25612, + [SMALL_STATE(650)] = 25684, + [SMALL_STATE(651)] = 25756, + [SMALL_STATE(652)] = 25828, + [SMALL_STATE(653)] = 25900, + [SMALL_STATE(654)] = 25972, + [SMALL_STATE(655)] = 26044, + [SMALL_STATE(656)] = 26116, + [SMALL_STATE(657)] = 26188, + [SMALL_STATE(658)] = 26260, + [SMALL_STATE(659)] = 26332, + [SMALL_STATE(660)] = 26404, + [SMALL_STATE(661)] = 26476, + [SMALL_STATE(662)] = 26548, + [SMALL_STATE(663)] = 26620, + [SMALL_STATE(664)] = 26692, + [SMALL_STATE(665)] = 26764, + [SMALL_STATE(666)] = 26836, + [SMALL_STATE(667)] = 26908, + [SMALL_STATE(668)] = 26980, + [SMALL_STATE(669)] = 27052, + [SMALL_STATE(670)] = 27124, + [SMALL_STATE(671)] = 27196, + [SMALL_STATE(672)] = 27268, + [SMALL_STATE(673)] = 27340, + [SMALL_STATE(674)] = 27412, + [SMALL_STATE(675)] = 27484, + [SMALL_STATE(676)] = 27556, + [SMALL_STATE(677)] = 27628, + [SMALL_STATE(678)] = 27700, + [SMALL_STATE(679)] = 27772, + [SMALL_STATE(680)] = 27844, + [SMALL_STATE(681)] = 27916, + [SMALL_STATE(682)] = 27988, + [SMALL_STATE(683)] = 28060, + [SMALL_STATE(684)] = 28132, + [SMALL_STATE(685)] = 28204, + [SMALL_STATE(686)] = 28276, + [SMALL_STATE(687)] = 28348, + [SMALL_STATE(688)] = 28420, + [SMALL_STATE(689)] = 28492, + [SMALL_STATE(690)] = 28564, + [SMALL_STATE(691)] = 28636, + [SMALL_STATE(692)] = 28708, + [SMALL_STATE(693)] = 28780, + [SMALL_STATE(694)] = 28849, + [SMALL_STATE(695)] = 28918, + [SMALL_STATE(696)] = 28987, + [SMALL_STATE(697)] = 29056, + [SMALL_STATE(698)] = 29118, + [SMALL_STATE(699)] = 29177, + [SMALL_STATE(700)] = 29236, + [SMALL_STATE(701)] = 29292, + [SMALL_STATE(702)] = 29348, + [SMALL_STATE(703)] = 29404, + [SMALL_STATE(704)] = 29460, + [SMALL_STATE(705)] = 29516, + [SMALL_STATE(706)] = 29553, + [SMALL_STATE(707)] = 29586, + [SMALL_STATE(708)] = 29619, + [SMALL_STATE(709)] = 29652, + [SMALL_STATE(710)] = 29685, + [SMALL_STATE(711)] = 29718, + [SMALL_STATE(712)] = 29751, + [SMALL_STATE(713)] = 29780, + [SMALL_STATE(714)] = 29809, + [SMALL_STATE(715)] = 29838, + [SMALL_STATE(716)] = 29867, + [SMALL_STATE(717)] = 29896, + [SMALL_STATE(718)] = 29925, + [SMALL_STATE(719)] = 29956, + [SMALL_STATE(720)] = 29986, + [SMALL_STATE(721)] = 30032, + [SMALL_STATE(722)] = 30078, + [SMALL_STATE(723)] = 30124, + [SMALL_STATE(724)] = 30170, + [SMALL_STATE(725)] = 30216, + [SMALL_STATE(726)] = 30262, + [SMALL_STATE(727)] = 30302, + [SMALL_STATE(728)] = 30348, + [SMALL_STATE(729)] = 30375, + [SMALL_STATE(730)] = 30402, + [SMALL_STATE(731)] = 30429, + [SMALL_STATE(732)] = 30460, + [SMALL_STATE(733)] = 30487, + [SMALL_STATE(734)] = 30514, + [SMALL_STATE(735)] = 30541, + [SMALL_STATE(736)] = 30568, + [SMALL_STATE(737)] = 30595, + [SMALL_STATE(738)] = 30622, + [SMALL_STATE(739)] = 30649, + [SMALL_STATE(740)] = 30676, + [SMALL_STATE(741)] = 30703, + [SMALL_STATE(742)] = 30730, + [SMALL_STATE(743)] = 30757, + [SMALL_STATE(744)] = 30784, + [SMALL_STATE(745)] = 30811, + [SMALL_STATE(746)] = 30838, + [SMALL_STATE(747)] = 30865, + [SMALL_STATE(748)] = 30892, + [SMALL_STATE(749)] = 30919, + [SMALL_STATE(750)] = 30946, + [SMALL_STATE(751)] = 30973, + [SMALL_STATE(752)] = 31000, + [SMALL_STATE(753)] = 31029, + [SMALL_STATE(754)] = 31056, + [SMALL_STATE(755)] = 31083, + [SMALL_STATE(756)] = 31110, + [SMALL_STATE(757)] = 31137, + [SMALL_STATE(758)] = 31164, + [SMALL_STATE(759)] = 31191, + [SMALL_STATE(760)] = 31218, + [SMALL_STATE(761)] = 31245, + [SMALL_STATE(762)] = 31272, + [SMALL_STATE(763)] = 31299, + [SMALL_STATE(764)] = 31326, + [SMALL_STATE(765)] = 31353, + [SMALL_STATE(766)] = 31380, + [SMALL_STATE(767)] = 31407, + [SMALL_STATE(768)] = 31434, + [SMALL_STATE(769)] = 31461, + [SMALL_STATE(770)] = 31488, + [SMALL_STATE(771)] = 31515, + [SMALL_STATE(772)] = 31542, + [SMALL_STATE(773)] = 31569, + [SMALL_STATE(774)] = 31596, + [SMALL_STATE(775)] = 31623, + [SMALL_STATE(776)] = 31668, + [SMALL_STATE(777)] = 31695, + [SMALL_STATE(778)] = 31722, + [SMALL_STATE(779)] = 31749, + [SMALL_STATE(780)] = 31776, + [SMALL_STATE(781)] = 31803, + [SMALL_STATE(782)] = 31830, + [SMALL_STATE(783)] = 31857, + [SMALL_STATE(784)] = 31884, + [SMALL_STATE(785)] = 31911, + [SMALL_STATE(786)] = 31938, + [SMALL_STATE(787)] = 31965, + [SMALL_STATE(788)] = 31992, + [SMALL_STATE(789)] = 32019, + [SMALL_STATE(790)] = 32046, + [SMALL_STATE(791)] = 32073, + [SMALL_STATE(792)] = 32100, + [SMALL_STATE(793)] = 32127, + [SMALL_STATE(794)] = 32154, + [SMALL_STATE(795)] = 32181, + [SMALL_STATE(796)] = 32208, + [SMALL_STATE(797)] = 32235, + [SMALL_STATE(798)] = 32262, + [SMALL_STATE(799)] = 32289, + [SMALL_STATE(800)] = 32316, + [SMALL_STATE(801)] = 32343, + [SMALL_STATE(802)] = 32370, + [SMALL_STATE(803)] = 32397, + [SMALL_STATE(804)] = 32424, + [SMALL_STATE(805)] = 32451, + [SMALL_STATE(806)] = 32478, + [SMALL_STATE(807)] = 32505, + [SMALL_STATE(808)] = 32532, + [SMALL_STATE(809)] = 32560, + [SMALL_STATE(810)] = 32594, + [SMALL_STATE(811)] = 32622, + [SMALL_STATE(812)] = 32650, + [SMALL_STATE(813)] = 32678, + [SMALL_STATE(814)] = 32707, + [SMALL_STATE(815)] = 32736, + [SMALL_STATE(816)] = 32765, + [SMALL_STATE(817)] = 32794, + [SMALL_STATE(818)] = 32818, + [SMALL_STATE(819)] = 32842, + [SMALL_STATE(820)] = 32876, + [SMALL_STATE(821)] = 32900, + [SMALL_STATE(822)] = 32924, + [SMALL_STATE(823)] = 32948, + [SMALL_STATE(824)] = 32972, + [SMALL_STATE(825)] = 32997, + [SMALL_STATE(826)] = 33022, + [SMALL_STATE(827)] = 33047, + [SMALL_STATE(828)] = 33084, + [SMALL_STATE(829)] = 33107, + [SMALL_STATE(830)] = 33130, + [SMALL_STATE(831)] = 33153, + [SMALL_STATE(832)] = 33178, + [SMALL_STATE(833)] = 33203, + [SMALL_STATE(834)] = 33228, + [SMALL_STATE(835)] = 33253, + [SMALL_STATE(836)] = 33278, + [SMALL_STATE(837)] = 33301, + [SMALL_STATE(838)] = 33326, + [SMALL_STATE(839)] = 33359, + [SMALL_STATE(840)] = 33384, + [SMALL_STATE(841)] = 33409, + [SMALL_STATE(842)] = 33432, + [SMALL_STATE(843)] = 33457, + [SMALL_STATE(844)] = 33480, + [SMALL_STATE(845)] = 33505, + [SMALL_STATE(846)] = 33530, + [SMALL_STATE(847)] = 33555, + [SMALL_STATE(848)] = 33580, + [SMALL_STATE(849)] = 33604, + [SMALL_STATE(850)] = 33638, + [SMALL_STATE(851)] = 33660, + [SMALL_STATE(852)] = 33682, + [SMALL_STATE(853)] = 33704, + [SMALL_STATE(854)] = 33726, + [SMALL_STATE(855)] = 33754, + [SMALL_STATE(856)] = 33776, + [SMALL_STATE(857)] = 33800, + [SMALL_STATE(858)] = 33822, + [SMALL_STATE(859)] = 33846, + [SMALL_STATE(860)] = 33868, + [SMALL_STATE(861)] = 33892, + [SMALL_STATE(862)] = 33926, + [SMALL_STATE(863)] = 33950, + [SMALL_STATE(864)] = 33974, + [SMALL_STATE(865)] = 33996, + [SMALL_STATE(866)] = 34020, + [SMALL_STATE(867)] = 34051, + [SMALL_STATE(868)] = 34076, + [SMALL_STATE(869)] = 34099, + [SMALL_STATE(870)] = 34122, + [SMALL_STATE(871)] = 34148, + [SMALL_STATE(872)] = 34186, + [SMALL_STATE(873)] = 34212, + [SMALL_STATE(874)] = 34238, + [SMALL_STATE(875)] = 34264, + [SMALL_STATE(876)] = 34283, + [SMALL_STATE(877)] = 34316, + [SMALL_STATE(878)] = 34335, + [SMALL_STATE(879)] = 34356, + [SMALL_STATE(880)] = 34375, + [SMALL_STATE(881)] = 34406, + [SMALL_STATE(882)] = 34427, + [SMALL_STATE(883)] = 34460, + [SMALL_STATE(884)] = 34493, + [SMALL_STATE(885)] = 34512, + [SMALL_STATE(886)] = 34531, + [SMALL_STATE(887)] = 34564, + [SMALL_STATE(888)] = 34597, + [SMALL_STATE(889)] = 34618, + [SMALL_STATE(890)] = 34639, + [SMALL_STATE(891)] = 34669, + [SMALL_STATE(892)] = 34699, + [SMALL_STATE(893)] = 34729, + [SMALL_STATE(894)] = 34747, + [SMALL_STATE(895)] = 34765, + [SMALL_STATE(896)] = 34783, + [SMALL_STATE(897)] = 34801, + [SMALL_STATE(898)] = 34819, + [SMALL_STATE(899)] = 34847, + [SMALL_STATE(900)] = 34877, + [SMALL_STATE(901)] = 34895, + [SMALL_STATE(902)] = 34913, + [SMALL_STATE(903)] = 34931, + [SMALL_STATE(904)] = 34949, + [SMALL_STATE(905)] = 34979, + [SMALL_STATE(906)] = 35009, + [SMALL_STATE(907)] = 35027, + [SMALL_STATE(908)] = 35045, + [SMALL_STATE(909)] = 35063, + [SMALL_STATE(910)] = 35091, + [SMALL_STATE(911)] = 35109, + [SMALL_STATE(912)] = 35127, + [SMALL_STATE(913)] = 35145, + [SMALL_STATE(914)] = 35163, + [SMALL_STATE(915)] = 35181, + [SMALL_STATE(916)] = 35199, + [SMALL_STATE(917)] = 35217, + [SMALL_STATE(918)] = 35235, + [SMALL_STATE(919)] = 35265, + [SMALL_STATE(920)] = 35295, + [SMALL_STATE(921)] = 35313, + [SMALL_STATE(922)] = 35331, + [SMALL_STATE(923)] = 35361, + [SMALL_STATE(924)] = 35391, + [SMALL_STATE(925)] = 35409, + [SMALL_STATE(926)] = 35427, + [SMALL_STATE(927)] = 35445, + [SMALL_STATE(928)] = 35463, + [SMALL_STATE(929)] = 35493, + [SMALL_STATE(930)] = 35511, + [SMALL_STATE(931)] = 35541, + [SMALL_STATE(932)] = 35559, + [SMALL_STATE(933)] = 35577, + [SMALL_STATE(934)] = 35604, + [SMALL_STATE(935)] = 35631, + [SMALL_STATE(936)] = 35656, + [SMALL_STATE(937)] = 35683, + [SMALL_STATE(938)] = 35714, + [SMALL_STATE(939)] = 35745, + [SMALL_STATE(940)] = 35764, + [SMALL_STATE(941)] = 35791, + [SMALL_STATE(942)] = 35818, + [SMALL_STATE(943)] = 35845, + [SMALL_STATE(944)] = 35872, + [SMALL_STATE(945)] = 35901, + [SMALL_STATE(946)] = 35918, + [SMALL_STATE(947)] = 35945, + [SMALL_STATE(948)] = 35969, + [SMALL_STATE(949)] = 35995, + [SMALL_STATE(950)] = 36023, + [SMALL_STATE(951)] = 36051, + [SMALL_STATE(952)] = 36079, + [SMALL_STATE(953)] = 36107, + [SMALL_STATE(954)] = 36135, + [SMALL_STATE(955)] = 36163, + [SMALL_STATE(956)] = 36191, + [SMALL_STATE(957)] = 36215, + [SMALL_STATE(958)] = 36241, + [SMALL_STATE(959)] = 36269, + [SMALL_STATE(960)] = 36297, + [SMALL_STATE(961)] = 36325, + [SMALL_STATE(962)] = 36353, + [SMALL_STATE(963)] = 36381, + [SMALL_STATE(964)] = 36402, + [SMALL_STATE(965)] = 36421, + [SMALL_STATE(966)] = 36446, + [SMALL_STATE(967)] = 36469, + [SMALL_STATE(968)] = 36494, + [SMALL_STATE(969)] = 36513, + [SMALL_STATE(970)] = 36536, + [SMALL_STATE(971)] = 36561, + [SMALL_STATE(972)] = 36586, + [SMALL_STATE(973)] = 36611, + [SMALL_STATE(974)] = 36630, + [SMALL_STATE(975)] = 36649, + [SMALL_STATE(976)] = 36670, + [SMALL_STATE(977)] = 36689, + [SMALL_STATE(978)] = 36708, + [SMALL_STATE(979)] = 36733, + [SMALL_STATE(980)] = 36756, + [SMALL_STATE(981)] = 36775, + [SMALL_STATE(982)] = 36798, + [SMALL_STATE(983)] = 36823, + [SMALL_STATE(984)] = 36846, + [SMALL_STATE(985)] = 36867, + [SMALL_STATE(986)] = 36892, + [SMALL_STATE(987)] = 36915, + [SMALL_STATE(988)] = 36934, + [SMALL_STATE(989)] = 36957, + [SMALL_STATE(990)] = 36977, + [SMALL_STATE(991)] = 36997, + [SMALL_STATE(992)] = 37017, + [SMALL_STATE(993)] = 37035, + [SMALL_STATE(994)] = 37055, + [SMALL_STATE(995)] = 37077, + [SMALL_STATE(996)] = 37099, + [SMALL_STATE(997)] = 37121, + [SMALL_STATE(998)] = 37143, + [SMALL_STATE(999)] = 37163, + [SMALL_STATE(1000)] = 37183, + [SMALL_STATE(1001)] = 37205, + [SMALL_STATE(1002)] = 37227, + [SMALL_STATE(1003)] = 37249, + [SMALL_STATE(1004)] = 37269, + [SMALL_STATE(1005)] = 37289, + [SMALL_STATE(1006)] = 37311, + [SMALL_STATE(1007)] = 37333, + [SMALL_STATE(1008)] = 37355, + [SMALL_STATE(1009)] = 37377, + [SMALL_STATE(1010)] = 37397, + [SMALL_STATE(1011)] = 37419, + [SMALL_STATE(1012)] = 37441, + [SMALL_STATE(1013)] = 37463, + [SMALL_STATE(1014)] = 37483, + [SMALL_STATE(1015)] = 37503, + [SMALL_STATE(1016)] = 37525, + [SMALL_STATE(1017)] = 37541, + [SMALL_STATE(1018)] = 37563, + [SMALL_STATE(1019)] = 37581, + [SMALL_STATE(1020)] = 37601, + [SMALL_STATE(1021)] = 37623, + [SMALL_STATE(1022)] = 37643, + [SMALL_STATE(1023)] = 37662, + [SMALL_STATE(1024)] = 37681, + [SMALL_STATE(1025)] = 37700, + [SMALL_STATE(1026)] = 37719, + [SMALL_STATE(1027)] = 37732, + [SMALL_STATE(1028)] = 37751, + [SMALL_STATE(1029)] = 37770, + [SMALL_STATE(1030)] = 37787, + [SMALL_STATE(1031)] = 37806, + [SMALL_STATE(1032)] = 37825, + [SMALL_STATE(1033)] = 37844, + [SMALL_STATE(1034)] = 37863, + [SMALL_STATE(1035)] = 37882, + [SMALL_STATE(1036)] = 37901, + [SMALL_STATE(1037)] = 37916, + [SMALL_STATE(1038)] = 37935, + [SMALL_STATE(1039)] = 37954, + [SMALL_STATE(1040)] = 37973, + [SMALL_STATE(1041)] = 37992, + [SMALL_STATE(1042)] = 38011, + [SMALL_STATE(1043)] = 38030, + [SMALL_STATE(1044)] = 38049, + [SMALL_STATE(1045)] = 38068, + [SMALL_STATE(1046)] = 38083, + [SMALL_STATE(1047)] = 38102, + [SMALL_STATE(1048)] = 38117, + [SMALL_STATE(1049)] = 38134, + [SMALL_STATE(1050)] = 38153, + [SMALL_STATE(1051)] = 38172, + [SMALL_STATE(1052)] = 38189, + [SMALL_STATE(1053)] = 38208, + [SMALL_STATE(1054)] = 38227, + [SMALL_STATE(1055)] = 38246, + [SMALL_STATE(1056)] = 38265, + [SMALL_STATE(1057)] = 38284, + [SMALL_STATE(1058)] = 38303, + [SMALL_STATE(1059)] = 38318, + [SMALL_STATE(1060)] = 38337, + [SMALL_STATE(1061)] = 38354, + [SMALL_STATE(1062)] = 38373, + [SMALL_STATE(1063)] = 38392, + [SMALL_STATE(1064)] = 38407, + [SMALL_STATE(1065)] = 38426, + [SMALL_STATE(1066)] = 38445, + [SMALL_STATE(1067)] = 38464, + [SMALL_STATE(1068)] = 38481, + [SMALL_STATE(1069)] = 38500, + [SMALL_STATE(1070)] = 38519, + [SMALL_STATE(1071)] = 38538, + [SMALL_STATE(1072)] = 38557, + [SMALL_STATE(1073)] = 38576, + [SMALL_STATE(1074)] = 38595, + [SMALL_STATE(1075)] = 38614, + [SMALL_STATE(1076)] = 38633, + [SMALL_STATE(1077)] = 38652, + [SMALL_STATE(1078)] = 38665, + [SMALL_STATE(1079)] = 38684, + [SMALL_STATE(1080)] = 38703, + [SMALL_STATE(1081)] = 38722, + [SMALL_STATE(1082)] = 38741, + [SMALL_STATE(1083)] = 38758, + [SMALL_STATE(1084)] = 38775, + [SMALL_STATE(1085)] = 38794, + [SMALL_STATE(1086)] = 38813, + [SMALL_STATE(1087)] = 38832, + [SMALL_STATE(1088)] = 38851, + [SMALL_STATE(1089)] = 38870, + [SMALL_STATE(1090)] = 38885, + [SMALL_STATE(1091)] = 38904, + [SMALL_STATE(1092)] = 38919, + [SMALL_STATE(1093)] = 38936, + [SMALL_STATE(1094)] = 38955, + [SMALL_STATE(1095)] = 38974, + [SMALL_STATE(1096)] = 38989, + [SMALL_STATE(1097)] = 39008, + [SMALL_STATE(1098)] = 39027, + [SMALL_STATE(1099)] = 39046, + [SMALL_STATE(1100)] = 39065, + [SMALL_STATE(1101)] = 39084, + [SMALL_STATE(1102)] = 39103, + [SMALL_STATE(1103)] = 39122, + [SMALL_STATE(1104)] = 39141, + [SMALL_STATE(1105)] = 39160, + [SMALL_STATE(1106)] = 39175, + [SMALL_STATE(1107)] = 39194, + [SMALL_STATE(1108)] = 39213, + [SMALL_STATE(1109)] = 39232, + [SMALL_STATE(1110)] = 39251, + [SMALL_STATE(1111)] = 39270, + [SMALL_STATE(1112)] = 39287, + [SMALL_STATE(1113)] = 39306, + [SMALL_STATE(1114)] = 39325, + [SMALL_STATE(1115)] = 39340, + [SMALL_STATE(1116)] = 39359, + [SMALL_STATE(1117)] = 39378, + [SMALL_STATE(1118)] = 39394, + [SMALL_STATE(1119)] = 39410, + [SMALL_STATE(1120)] = 39426, + [SMALL_STATE(1121)] = 39440, + [SMALL_STATE(1122)] = 39454, + [SMALL_STATE(1123)] = 39470, + [SMALL_STATE(1124)] = 39486, + [SMALL_STATE(1125)] = 39502, + [SMALL_STATE(1126)] = 39514, + [SMALL_STATE(1127)] = 39530, + [SMALL_STATE(1128)] = 39542, + [SMALL_STATE(1129)] = 39556, + [SMALL_STATE(1130)] = 39572, + [SMALL_STATE(1131)] = 39588, + [SMALL_STATE(1132)] = 39602, + [SMALL_STATE(1133)] = 39618, + [SMALL_STATE(1134)] = 39634, + [SMALL_STATE(1135)] = 39646, + [SMALL_STATE(1136)] = 39662, + [SMALL_STATE(1137)] = 39674, + [SMALL_STATE(1138)] = 39690, + [SMALL_STATE(1139)] = 39706, + [SMALL_STATE(1140)] = 39722, + [SMALL_STATE(1141)] = 39738, + [SMALL_STATE(1142)] = 39754, + [SMALL_STATE(1143)] = 39770, + [SMALL_STATE(1144)] = 39786, + [SMALL_STATE(1145)] = 39802, + [SMALL_STATE(1146)] = 39816, + [SMALL_STATE(1147)] = 39832, + [SMALL_STATE(1148)] = 39844, + [SMALL_STATE(1149)] = 39856, + [SMALL_STATE(1150)] = 39872, + [SMALL_STATE(1151)] = 39888, + [SMALL_STATE(1152)] = 39900, + [SMALL_STATE(1153)] = 39914, + [SMALL_STATE(1154)] = 39928, + [SMALL_STATE(1155)] = 39944, + [SMALL_STATE(1156)] = 39960, + [SMALL_STATE(1157)] = 39976, + [SMALL_STATE(1158)] = 39992, + [SMALL_STATE(1159)] = 40008, + [SMALL_STATE(1160)] = 40024, + [SMALL_STATE(1161)] = 40040, + [SMALL_STATE(1162)] = 40052, + [SMALL_STATE(1163)] = 40064, + [SMALL_STATE(1164)] = 40080, + [SMALL_STATE(1165)] = 40092, + [SMALL_STATE(1166)] = 40108, + [SMALL_STATE(1167)] = 40124, + [SMALL_STATE(1168)] = 40140, + [SMALL_STATE(1169)] = 40156, + [SMALL_STATE(1170)] = 40172, + [SMALL_STATE(1171)] = 40186, + [SMALL_STATE(1172)] = 40200, + [SMALL_STATE(1173)] = 40216, + [SMALL_STATE(1174)] = 40230, + [SMALL_STATE(1175)] = 40246, + [SMALL_STATE(1176)] = 40262, + [SMALL_STATE(1177)] = 40278, + [SMALL_STATE(1178)] = 40294, + [SMALL_STATE(1179)] = 40310, + [SMALL_STATE(1180)] = 40326, + [SMALL_STATE(1181)] = 40338, + [SMALL_STATE(1182)] = 40354, + [SMALL_STATE(1183)] = 40366, + [SMALL_STATE(1184)] = 40382, + [SMALL_STATE(1185)] = 40396, + [SMALL_STATE(1186)] = 40408, + [SMALL_STATE(1187)] = 40424, + [SMALL_STATE(1188)] = 40438, + [SMALL_STATE(1189)] = 40450, + [SMALL_STATE(1190)] = 40462, + [SMALL_STATE(1191)] = 40474, + [SMALL_STATE(1192)] = 40490, + [SMALL_STATE(1193)] = 40506, + [SMALL_STATE(1194)] = 40522, + [SMALL_STATE(1195)] = 40538, + [SMALL_STATE(1196)] = 40550, + [SMALL_STATE(1197)] = 40566, + [SMALL_STATE(1198)] = 40582, + [SMALL_STATE(1199)] = 40598, + [SMALL_STATE(1200)] = 40614, + [SMALL_STATE(1201)] = 40630, + [SMALL_STATE(1202)] = 40644, + [SMALL_STATE(1203)] = 40660, + [SMALL_STATE(1204)] = 40676, + [SMALL_STATE(1205)] = 40690, + [SMALL_STATE(1206)] = 40706, + [SMALL_STATE(1207)] = 40722, + [SMALL_STATE(1208)] = 40738, + [SMALL_STATE(1209)] = 40750, + [SMALL_STATE(1210)] = 40766, + [SMALL_STATE(1211)] = 40780, + [SMALL_STATE(1212)] = 40796, + [SMALL_STATE(1213)] = 40808, + [SMALL_STATE(1214)] = 40824, + [SMALL_STATE(1215)] = 40836, + [SMALL_STATE(1216)] = 40852, + [SMALL_STATE(1217)] = 40864, + [SMALL_STATE(1218)] = 40880, + [SMALL_STATE(1219)] = 40892, + [SMALL_STATE(1220)] = 40908, + [SMALL_STATE(1221)] = 40924, + [SMALL_STATE(1222)] = 40940, + [SMALL_STATE(1223)] = 40956, + [SMALL_STATE(1224)] = 40972, + [SMALL_STATE(1225)] = 40988, + [SMALL_STATE(1226)] = 41000, + [SMALL_STATE(1227)] = 41016, + [SMALL_STATE(1228)] = 41032, + [SMALL_STATE(1229)] = 41048, + [SMALL_STATE(1230)] = 41060, + [SMALL_STATE(1231)] = 41072, + [SMALL_STATE(1232)] = 41084, + [SMALL_STATE(1233)] = 41100, + [SMALL_STATE(1234)] = 41114, + [SMALL_STATE(1235)] = 41130, + [SMALL_STATE(1236)] = 41146, + [SMALL_STATE(1237)] = 41162, + [SMALL_STATE(1238)] = 41178, + [SMALL_STATE(1239)] = 41190, + [SMALL_STATE(1240)] = 41206, + [SMALL_STATE(1241)] = 41222, + [SMALL_STATE(1242)] = 41236, + [SMALL_STATE(1243)] = 41252, + [SMALL_STATE(1244)] = 41268, + [SMALL_STATE(1245)] = 41282, + [SMALL_STATE(1246)] = 41298, + [SMALL_STATE(1247)] = 41314, + [SMALL_STATE(1248)] = 41330, + [SMALL_STATE(1249)] = 41346, + [SMALL_STATE(1250)] = 41362, + [SMALL_STATE(1251)] = 41378, + [SMALL_STATE(1252)] = 41390, + [SMALL_STATE(1253)] = 41406, + [SMALL_STATE(1254)] = 41422, + [SMALL_STATE(1255)] = 41438, + [SMALL_STATE(1256)] = 41454, + [SMALL_STATE(1257)] = 41470, + [SMALL_STATE(1258)] = 41486, + [SMALL_STATE(1259)] = 41502, + [SMALL_STATE(1260)] = 41518, + [SMALL_STATE(1261)] = 41532, + [SMALL_STATE(1262)] = 41548, + [SMALL_STATE(1263)] = 41560, + [SMALL_STATE(1264)] = 41573, + [SMALL_STATE(1265)] = 41584, + [SMALL_STATE(1266)] = 41597, + [SMALL_STATE(1267)] = 41610, + [SMALL_STATE(1268)] = 41623, + [SMALL_STATE(1269)] = 41636, + [SMALL_STATE(1270)] = 41649, + [SMALL_STATE(1271)] = 41660, + [SMALL_STATE(1272)] = 41673, + [SMALL_STATE(1273)] = 41686, + [SMALL_STATE(1274)] = 41699, + [SMALL_STATE(1275)] = 41712, + [SMALL_STATE(1276)] = 41725, + [SMALL_STATE(1277)] = 41738, + [SMALL_STATE(1278)] = 41751, + [SMALL_STATE(1279)] = 41762, + [SMALL_STATE(1280)] = 41775, + [SMALL_STATE(1281)] = 41788, + [SMALL_STATE(1282)] = 41799, + [SMALL_STATE(1283)] = 41812, + [SMALL_STATE(1284)] = 41825, + [SMALL_STATE(1285)] = 41836, + [SMALL_STATE(1286)] = 41849, + [SMALL_STATE(1287)] = 41860, + [SMALL_STATE(1288)] = 41873, + [SMALL_STATE(1289)] = 41884, + [SMALL_STATE(1290)] = 41897, + [SMALL_STATE(1291)] = 41910, + [SMALL_STATE(1292)] = 41923, + [SMALL_STATE(1293)] = 41936, + [SMALL_STATE(1294)] = 41949, + [SMALL_STATE(1295)] = 41962, + [SMALL_STATE(1296)] = 41975, + [SMALL_STATE(1297)] = 41988, + [SMALL_STATE(1298)] = 42001, + [SMALL_STATE(1299)] = 42014, + [SMALL_STATE(1300)] = 42025, + [SMALL_STATE(1301)] = 42036, + [SMALL_STATE(1302)] = 42049, + [SMALL_STATE(1303)] = 42060, + [SMALL_STATE(1304)] = 42073, + [SMALL_STATE(1305)] = 42086, + [SMALL_STATE(1306)] = 42099, + [SMALL_STATE(1307)] = 42112, + [SMALL_STATE(1308)] = 42123, + [SMALL_STATE(1309)] = 42136, + [SMALL_STATE(1310)] = 42149, + [SMALL_STATE(1311)] = 42160, + [SMALL_STATE(1312)] = 42173, + [SMALL_STATE(1313)] = 42186, + [SMALL_STATE(1314)] = 42197, + [SMALL_STATE(1315)] = 42208, + [SMALL_STATE(1316)] = 42221, + [SMALL_STATE(1317)] = 42234, + [SMALL_STATE(1318)] = 42245, + [SMALL_STATE(1319)] = 42258, + [SMALL_STATE(1320)] = 42271, + [SMALL_STATE(1321)] = 42284, + [SMALL_STATE(1322)] = 42297, + [SMALL_STATE(1323)] = 42310, + [SMALL_STATE(1324)] = 42321, + [SMALL_STATE(1325)] = 42334, + [SMALL_STATE(1326)] = 42347, + [SMALL_STATE(1327)] = 42360, + [SMALL_STATE(1328)] = 42371, + [SMALL_STATE(1329)] = 42382, + [SMALL_STATE(1330)] = 42395, + [SMALL_STATE(1331)] = 42408, + [SMALL_STATE(1332)] = 42419, + [SMALL_STATE(1333)] = 42430, + [SMALL_STATE(1334)] = 42443, + [SMALL_STATE(1335)] = 42456, + [SMALL_STATE(1336)] = 42469, + [SMALL_STATE(1337)] = 42480, + [SMALL_STATE(1338)] = 42491, + [SMALL_STATE(1339)] = 42504, + [SMALL_STATE(1340)] = 42515, + [SMALL_STATE(1341)] = 42528, + [SMALL_STATE(1342)] = 42539, + [SMALL_STATE(1343)] = 42552, + [SMALL_STATE(1344)] = 42565, + [SMALL_STATE(1345)] = 42576, + [SMALL_STATE(1346)] = 42589, + [SMALL_STATE(1347)] = 42602, + [SMALL_STATE(1348)] = 42613, + [SMALL_STATE(1349)] = 42626, + [SMALL_STATE(1350)] = 42637, + [SMALL_STATE(1351)] = 42648, + [SMALL_STATE(1352)] = 42661, + [SMALL_STATE(1353)] = 42674, + [SMALL_STATE(1354)] = 42684, + [SMALL_STATE(1355)] = 42694, + [SMALL_STATE(1356)] = 42704, + [SMALL_STATE(1357)] = 42714, + [SMALL_STATE(1358)] = 42724, + [SMALL_STATE(1359)] = 42734, + [SMALL_STATE(1360)] = 42744, + [SMALL_STATE(1361)] = 42754, + [SMALL_STATE(1362)] = 42764, + [SMALL_STATE(1363)] = 42774, + [SMALL_STATE(1364)] = 42784, + [SMALL_STATE(1365)] = 42794, + [SMALL_STATE(1366)] = 42804, + [SMALL_STATE(1367)] = 42814, + [SMALL_STATE(1368)] = 42824, + [SMALL_STATE(1369)] = 42834, + [SMALL_STATE(1370)] = 42844, + [SMALL_STATE(1371)] = 42854, + [SMALL_STATE(1372)] = 42864, + [SMALL_STATE(1373)] = 42874, + [SMALL_STATE(1374)] = 42884, + [SMALL_STATE(1375)] = 42894, + [SMALL_STATE(1376)] = 42904, + [SMALL_STATE(1377)] = 42914, + [SMALL_STATE(1378)] = 42924, + [SMALL_STATE(1379)] = 42934, + [SMALL_STATE(1380)] = 42944, + [SMALL_STATE(1381)] = 42954, + [SMALL_STATE(1382)] = 42964, + [SMALL_STATE(1383)] = 42974, + [SMALL_STATE(1384)] = 42984, + [SMALL_STATE(1385)] = 42994, + [SMALL_STATE(1386)] = 43004, + [SMALL_STATE(1387)] = 43014, + [SMALL_STATE(1388)] = 43024, + [SMALL_STATE(1389)] = 43034, + [SMALL_STATE(1390)] = 43044, + [SMALL_STATE(1391)] = 43054, + [SMALL_STATE(1392)] = 43064, + [SMALL_STATE(1393)] = 43074, + [SMALL_STATE(1394)] = 43084, + [SMALL_STATE(1395)] = 43094, + [SMALL_STATE(1396)] = 43104, + [SMALL_STATE(1397)] = 43114, + [SMALL_STATE(1398)] = 43124, + [SMALL_STATE(1399)] = 43134, + [SMALL_STATE(1400)] = 43144, + [SMALL_STATE(1401)] = 43154, + [SMALL_STATE(1402)] = 43164, + [SMALL_STATE(1403)] = 43174, + [SMALL_STATE(1404)] = 43184, + [SMALL_STATE(1405)] = 43194, + [SMALL_STATE(1406)] = 43204, + [SMALL_STATE(1407)] = 43214, + [SMALL_STATE(1408)] = 43224, + [SMALL_STATE(1409)] = 43234, + [SMALL_STATE(1410)] = 43244, + [SMALL_STATE(1411)] = 43254, + [SMALL_STATE(1412)] = 43264, + [SMALL_STATE(1413)] = 43274, + [SMALL_STATE(1414)] = 43284, + [SMALL_STATE(1415)] = 43294, + [SMALL_STATE(1416)] = 43304, + [SMALL_STATE(1417)] = 43314, + [SMALL_STATE(1418)] = 43324, + [SMALL_STATE(1419)] = 43334, + [SMALL_STATE(1420)] = 43344, + [SMALL_STATE(1421)] = 43354, + [SMALL_STATE(1422)] = 43364, + [SMALL_STATE(1423)] = 43374, + [SMALL_STATE(1424)] = 43384, + [SMALL_STATE(1425)] = 43394, + [SMALL_STATE(1426)] = 43404, + [SMALL_STATE(1427)] = 43414, + [SMALL_STATE(1428)] = 43424, + [SMALL_STATE(1429)] = 43434, + [SMALL_STATE(1430)] = 43444, + [SMALL_STATE(1431)] = 43454, + [SMALL_STATE(1432)] = 43464, + [SMALL_STATE(1433)] = 43474, + [SMALL_STATE(1434)] = 43484, + [SMALL_STATE(1435)] = 43494, + [SMALL_STATE(1436)] = 43504, + [SMALL_STATE(1437)] = 43514, + [SMALL_STATE(1438)] = 43524, + [SMALL_STATE(1439)] = 43534, + [SMALL_STATE(1440)] = 43544, + [SMALL_STATE(1441)] = 43554, + [SMALL_STATE(1442)] = 43564, + [SMALL_STATE(1443)] = 43574, + [SMALL_STATE(1444)] = 43584, + [SMALL_STATE(1445)] = 43594, + [SMALL_STATE(1446)] = 43604, + [SMALL_STATE(1447)] = 43614, + [SMALL_STATE(1448)] = 43624, + [SMALL_STATE(1449)] = 43634, + [SMALL_STATE(1450)] = 43644, + [SMALL_STATE(1451)] = 43654, + [SMALL_STATE(1452)] = 43664, + [SMALL_STATE(1453)] = 43674, + [SMALL_STATE(1454)] = 43684, + [SMALL_STATE(1455)] = 43694, + [SMALL_STATE(1456)] = 43704, + [SMALL_STATE(1457)] = 43714, + [SMALL_STATE(1458)] = 43724, + [SMALL_STATE(1459)] = 43734, + [SMALL_STATE(1460)] = 43744, + [SMALL_STATE(1461)] = 43754, + [SMALL_STATE(1462)] = 43764, + [SMALL_STATE(1463)] = 43774, + [SMALL_STATE(1464)] = 43784, + [SMALL_STATE(1465)] = 43794, + [SMALL_STATE(1466)] = 43804, + [SMALL_STATE(1467)] = 43814, + [SMALL_STATE(1468)] = 43824, + [SMALL_STATE(1469)] = 43834, + [SMALL_STATE(1470)] = 43844, + [SMALL_STATE(1471)] = 43854, + [SMALL_STATE(1472)] = 43864, + [SMALL_STATE(1473)] = 43874, + [SMALL_STATE(1474)] = 43884, + [SMALL_STATE(1475)] = 43894, + [SMALL_STATE(1476)] = 43904, + [SMALL_STATE(1477)] = 43914, + [SMALL_STATE(1478)] = 43924, + [SMALL_STATE(1479)] = 43934, + [SMALL_STATE(1480)] = 43944, + [SMALL_STATE(1481)] = 43954, + [SMALL_STATE(1482)] = 43964, + [SMALL_STATE(1483)] = 43974, + [SMALL_STATE(1484)] = 43984, + [SMALL_STATE(1485)] = 43994, + [SMALL_STATE(1486)] = 44004, + [SMALL_STATE(1487)] = 44014, + [SMALL_STATE(1488)] = 44024, + [SMALL_STATE(1489)] = 44034, + [SMALL_STATE(1490)] = 44044, + [SMALL_STATE(1491)] = 44054, + [SMALL_STATE(1492)] = 44064, + [SMALL_STATE(1493)] = 44074, + [SMALL_STATE(1494)] = 44084, + [SMALL_STATE(1495)] = 44094, + [SMALL_STATE(1496)] = 44104, + [SMALL_STATE(1497)] = 44114, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74518,1670 +74861,1674 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(416), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(274), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(404), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(134), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1035), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(330), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1474), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1265), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1013), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(396), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(462), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1077), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1432), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1282), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1418), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1411), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1392), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(417), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(210), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(415), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(127), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1104), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1279), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(333), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1444), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1297), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1015), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(427), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1094), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1098), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1382), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1336), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1380), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1379), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1429), [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(349), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(939), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1023), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1377), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(124), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1373), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1032), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(945), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1031), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1433), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(123), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(83), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1484), [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(645), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(667), [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1181), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1348), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(388), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1101), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(962), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(417), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1380), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(934), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(404), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1257), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1335), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(420), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1036), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(968), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(418), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1390), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(939), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(415), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(62), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(187), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(199), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(187), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(109), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(145), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(88), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(62), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(197), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1078), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(978), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(196), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(416), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(404), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(134), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1035), - [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(640), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(330), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1474), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1079), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(396), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(462), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1057), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1107), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1493), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1481), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1020), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1028), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(154), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(117), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(45), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(645), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(117), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(25), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1181), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1348), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(388), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1101), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(962), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(417), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1380), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(404), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(417), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(415), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(127), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1104), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(642), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(333), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1444), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1101), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(392), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(427), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1057), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1056), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1497), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1485), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1054), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(25), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1053), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(162), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(107), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(40), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(667), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(5), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(107), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1257), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1335), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(420), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1036), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(968), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(418), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1390), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(415), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(77), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(180), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(198), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(180), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(108), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(115), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(128), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(77), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(196), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1089), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(973), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(200), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 82), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 82), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 82), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 82), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_catch_block, 7), [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_catch_block, 7), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 27), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 27), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 10, .production_id = 136), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 10, .production_id = 136), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 102), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, .production_id = 102), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_catch_block, 9), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_catch_block, 9), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, .production_id = 127), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, .production_id = 127), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_block, 2), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_block, 2), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(189), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(189), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_block, 2), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_block, 2), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 70), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 70), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 93), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 93), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template, 2), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template, 2), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, .production_id = 4), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, .production_id = 4), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template, 3), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template, 3), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_block, 2), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_block, 2), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 10, .production_id = 138), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 10, .production_id = 138), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 93), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 93), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_catch_block, 9), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_catch_block, 9), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(185), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(185), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, .production_id = 127), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, .production_id = 127), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 27), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 27), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_block, 2), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_block, 2), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 102), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, .production_id = 102), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 70), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 70), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template, 3), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template, 3), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, .production_id = 4), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, .production_id = 4), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template, 2), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template, 2), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 81), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 81), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 83), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 83), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 84), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 84), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 3), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 3), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 55), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 55), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 99), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 99), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 110), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 110), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 78), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 78), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 79), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 79), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 80), [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 80), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 79), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 79), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 85), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 85), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 86), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 86), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 78), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 78), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_item, 3), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_item, 3), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 23), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 23), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 87), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 87), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 54), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 54), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 68), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 68), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 67), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 67), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 4, .production_id = 67), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 4, .production_id = 67), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 67), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 67), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 3, .production_id = 23), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 3, .production_id = 23), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 134), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 134), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 129), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 129), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 61), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 61), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 131), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 131), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 121), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 121), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 130), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 130), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 129), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 129), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 128), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 128), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_item, 2), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_item, 2), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 126), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 126), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 115), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 115), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 122), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 122), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 121), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 121), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 120), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 120), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 107), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 107), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 55), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 55), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 81), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 81), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 83), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 83), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 84), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 84), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 85), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 85), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 86), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 86), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 87), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 87), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 54), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 54), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 5, .production_id = 90), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 5, .production_id = 90), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 55), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 55), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_item, 2), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_item, 2), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_item, 2), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_item, 2), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 79), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 79), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 100), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 100), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 56), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 56), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 45), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 45), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 58), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 58), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 101), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 101), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 106), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 106), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 108), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 108), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 109), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 109), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 59), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 59), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 112), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 112), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 115), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 115), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 116), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 116), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 100), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 100), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 117), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 117), [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 118), [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 118), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_item, 2), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_item, 2), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 117), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 117), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 100), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 100), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 116), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 116), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 115), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 115), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 112), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 112), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 5, .production_id = 90), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 5, .production_id = 90), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 55), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 55), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 4, .production_id = 54), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 4, .production_id = 54), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 79), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 79), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_item, 3, .production_id = 20), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_item, 3, .production_id = 20), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 59), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 59), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 110), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 110), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 109), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 109), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 58), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 58), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 108), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 108), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 45), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 45), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 23), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 23), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 106), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 106), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 56), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 56), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 101), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 101), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 100), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 100), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 99), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 99), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 4, .production_id = 54), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 4, .production_id = 54), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 107), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 107), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 120), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 120), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 121), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 121), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 122), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 122), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 115), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 115), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 126), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 126), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 129), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 129), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 130), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 130), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 131), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 131), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_item, 3, .production_id = 20), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_item, 3, .production_id = 20), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 61), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 61), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 121), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 121), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 132), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 132), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 67), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 67), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 4, .production_id = 67), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 4, .production_id = 67), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 130), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 130), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 67), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 67), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 68), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 68), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 23), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 23), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 136), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 136), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 3), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 3), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_item, 3), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_item, 3), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 23), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 23), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_item, 3, .production_id = 23), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_item, 3, .production_id = 23), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1445), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1447), [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 5), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), SHIFT(1044), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), SHIFT(1115), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), REDUCE(sym_scoped_type_identifier, 3, .production_id = 22), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 15), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 15), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 16), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 16), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), REDUCE(sym__expression_except_range, 1), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 31), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 31), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 73), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 73), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 74), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 74), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 5, .production_id = 75), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 5, .production_id = 75), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 76), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 76), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__option_type, 2), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__option_type, 2), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 40), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 40), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 39), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 39), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 19), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 19), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 45), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 45), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), SHIFT(1376), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__option_type, 1), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__option_type, 1), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), SHIFT(1044), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), SHIFT(1044), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 3), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 3), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__option_type, 1), SHIFT(392), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 37), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 37), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 66), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 66), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unwrap_expression, 2), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unwrap_expression, 2), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, .production_id = 104), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, .production_id = 104), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 22), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 88), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 88), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 6), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 6), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 4), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 4), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 3), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 33), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 33), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 69), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 69), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 3), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 3), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 7), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 7), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 8), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 8), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), REDUCE(sym__expression_except_range, 1), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 15), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 15), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 16), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 16), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 76), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 76), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 3), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 3), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 39), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 39), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 40), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 40), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), SHIFT(1115), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), SHIFT(1115), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__option_type, 1), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__option_type, 1), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), SHIFT(1461), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__option_type, 2), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__option_type, 2), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 19), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 19), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 31), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 31), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 45), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 45), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 73), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 73), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 74), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 74), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 5, .production_id = 75), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 5, .production_id = 75), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__option_type, 1), SHIFT(402), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unwrap_expression, 2), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unwrap_expression, 2), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 4), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 4), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 66), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 66), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 69), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 69), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 33), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 33), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 88), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 88), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 37), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 37), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 7), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 7), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 22), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 3), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 3), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 3), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, .production_id = 104), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, .production_id = 104), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 6), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 6), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_expression, 8), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_expression, 8), [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 34), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 42), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 37), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 37), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(736), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1272), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1309), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1417), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1387), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1271), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(629), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1389), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(350), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(939), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(81), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(86), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1393), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(698), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__expression_except_range, 1), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 113), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 97), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 96), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 114), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 85), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 125), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 89), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 4), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 105), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 72), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 71), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 57), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 57), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1479), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 57), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 57), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 57), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 57), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__option_type, 1), SHIFT(848), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 37), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 37), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__expression_except_range, 1), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__expression_except_range, 1), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(763), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1282), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1326), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1359), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1281), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(637), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1393), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(345), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(945), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1395), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(86), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(85), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(702), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 114), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 125), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 97), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 96), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 85), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 128), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 89), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 113), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 105), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 135), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 72), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 71), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1483), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 57), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 57), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 57), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 57), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 57), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 57), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__option_type, 1), SHIFT(852), [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 47), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 48), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 49), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 49), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, .production_id = 1), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 51), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 51), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 49), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 51), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 49), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 51), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 47), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 48), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, .production_id = 1), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 51), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 51), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 49), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 49), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 51), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 49), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 53), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 2), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 51), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 49), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 53), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 2), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_template_repeat1, 2), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_template_repeat1, 2), SHIFT_REPEAT(975), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_template_repeat1, 2), SHIFT_REPEAT(139), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1469), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(348), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1395), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template_substitution, 3), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template_substitution, 3), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 52), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1088), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(102), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 50), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(334), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 7), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 62), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 135), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 135), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 133), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 63), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 132), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 64), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 133), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 132), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 45), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 123), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 65), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 45), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(604), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 124), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 123), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 24), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 2), SHIFT_REPEAT(862), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 2), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case_arm, 4, .production_id = 85), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), SHIFT_REPEAT(338), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 24), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(931), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(311), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 77), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case_arm, 3, .production_id = 71), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1308), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(933), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 98), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(699), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(940), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1025), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 95), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(328), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(364), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(50), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 94), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(280), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(776), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(226), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 103), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 133), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 45), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(754), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 57), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 119), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 24), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_template_repeat1, 2), SHIFT_REPEAT(976), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_template_repeat1, 2), SHIFT_REPEAT(137), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(1473), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(341), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1466), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_template_substitution, 3), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_template_substitution, 3), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1091), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 52), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(624), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 124), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(941), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 103), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 65), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 77), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(336), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 64), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 24), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 50), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 98), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(936), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 63), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(312), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1092), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 95), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), SHIFT_REPEAT(344), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 119), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(330), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1343), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case_arm, 4, .production_id = 85), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 2), SHIFT_REPEAT(866), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_expression_repeat1, 2), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 24), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(367), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 7), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 62), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 123), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case_arm, 3, .production_id = 71), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(49), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 45), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 123), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 45), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(124), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 133), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 134), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 133), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 134), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 137), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 137), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(701), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(935), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(734), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 134), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 45), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(208), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 24), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(223), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), SHIFT(781), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 111), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3352] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 43), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 44), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 46), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 94), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 57), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3274] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 46), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 43), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 44), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), }; #ifdef __cplusplus diff --git a/test/corpus/struct.txt b/test/corpus/struct.txt new file mode 100644 index 0000000..61e3359 --- /dev/null +++ b/test/corpus/struct.txt @@ -0,0 +1,62 @@ +================================================================================ +Field with attribute & default value +================================================================================ + +struct FunctionDesc { + deprecated: string? = nil, + #[serde(rename = "async")] + _async: bool = false, + args: [Argument] = {}, + returns: [string]? = nil, + doc: string? = nil, + #[serde(rename = "throws")] + _throws: [string]? = nil, +} + +-------------------------------------------------------------------------------- + +(source_file + (struct_item + (type_identifier) + (field_declaration_list + (field_declaration + (field_identifier) + (primitive_type) + (identifier)) + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal + (string_fragment))))) + (field_declaration + (field_identifier) + (primitive_type) + (boolean_literal)) + (field_declaration + (field_identifier) + (array_type + (type_identifier)) + (block)) + (field_declaration + (field_identifier) + (array_type + (primitive_type)) + (identifier)) + (field_declaration + (field_identifier) + (primitive_type) + (identifier)) + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (string_literal + (string_fragment))))) + (field_declaration + (field_identifier) + (array_type + (primitive_type)) + (identifier)))))