From 4b5ff0b89ee4e220f3bf4bd2e77b2b6426da3752 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 15:52:33 +0000 Subject: [PATCH 1/8] Python: Support unpacking in comprehensions in `tree-sitter-python` This is the easy part -- we just allow `dictionary_splat` or `list_splat` to appear in the same place as the expression. --- python/extractor/tsg-python/tsp/grammar.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 05b792340ddb..8f4dd8d7cf64 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -1031,28 +1031,28 @@ module.exports = grammar({ list_comprehension: $ => seq( '[', - field('body', $.expression), + field('body', choice($.expression, $.list_splat)), $._comprehension_clauses, ']' ), dictionary_comprehension: $ => seq( '{', - field('body', $.pair), + field('body', choice($.pair, $.dictionary_splat)), $._comprehension_clauses, '}' ), set_comprehension: $ => seq( '{', - field('body', $.expression), + field('body', choice($.expression, $.list_splat)), $._comprehension_clauses, '}' ), generator_expression: $ => seq( '(', - field('body', $.expression), + field('body', choice($.expression, $.list_splat)), $._comprehension_clauses, ')' ), From 97086c3cc90da92156c765c97697c654813e13f5 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 15:52:44 +0000 Subject: [PATCH 2/8] Python: Regenerate parser files --- .../extractor/tsg-python/tsp/src/grammar.json | 52 +- .../tsg-python/tsp/src/node-types.json | 16 + python/extractor/tsg-python/tsp/src/parser.c | 66874 ++++++++-------- 3 files changed, 33883 insertions(+), 33059 deletions(-) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index 552597b18a9b..8fb9763034ef 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -5646,8 +5646,17 @@ "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + } + ] } }, { @@ -5671,8 +5680,17 @@ "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "pair" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + } + ] } }, { @@ -5696,8 +5714,17 @@ "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + } + ] } }, { @@ -5721,8 +5748,17 @@ "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + } + ] } }, { diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index f8659f44e2e8..6579591c6522 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -1162,6 +1162,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "dictionary_splat", + "named": true + }, { "type": "pair", "named": true @@ -1702,6 +1706,10 @@ { "type": "expression", "named": true + }, + { + "type": "list_splat", + "named": true } ] } @@ -2079,6 +2087,10 @@ { "type": "expression", "named": true + }, + { + "type": "list_splat", + "named": true } ] } @@ -3179,6 +3191,10 @@ { "type": "expression", "named": true + }, + { + "type": "list_splat", + "named": true } ] } diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index c0d6afc81eeb..16db1b93d977 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1734 -#define LARGE_STATE_COUNT 156 +#define STATE_COUNT 1755 +#define LARGE_STATE_COUNT 157 #define SYMBOL_COUNT 292 #define ALIAS_COUNT 3 #define TOKEN_COUNT 110 @@ -2265,8 +2265,8 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [47] = {.index = 67, .length = 1}, [48] = {.index = 68, .length = 2}, [49] = {.index = 70, .length = 1}, - [51] = {.index = 71, .length = 3}, - [52] = {.index = 74, .length = 1}, + [51] = {.index = 71, .length = 1}, + [52] = {.index = 72, .length = 3}, [53] = {.index = 75, .length = 2}, [54] = {.index = 77, .length = 1}, [55] = {.index = 78, .length = 2}, @@ -2503,11 +2503,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [70] = {field_module_name, 1}, [71] = + {field_body, 1}, + [72] = {field_element, 0}, {field_element, 1, .inherited = true}, {field_trailing_comma, 2}, - [74] = - {field_body, 1}, [75] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, @@ -3088,8 +3088,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 5, + [4] = 4, + [5] = 2, [6] = 6, [7] = 7, [8] = 8, @@ -3116,8 +3116,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 5, - [33] = 7, + [32] = 4, + [33] = 6, [34] = 8, [35] = 9, [36] = 10, @@ -3143,13 +3143,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 30, [57] = 31, [58] = 3, - [59] = 6, + [59] = 7, [60] = 60, [61] = 60, [62] = 62, - [63] = 63, - [64] = 60, - [65] = 63, + [63] = 60, + [64] = 64, + [65] = 62, [66] = 66, [67] = 66, [68] = 68, @@ -3158,65 +3158,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [71] = 71, [72] = 72, [73] = 73, - [74] = 71, + [74] = 74, [75] = 75, [76] = 76, - [77] = 77, + [77] = 75, [78] = 78, [79] = 79, - [80] = 68, + [80] = 80, [81] = 81, [82] = 82, [83] = 83, [84] = 84, - [85] = 76, + [85] = 85, [86] = 86, [87] = 87, [88] = 88, - [89] = 69, - [90] = 70, - [91] = 91, - [92] = 72, - [93] = 78, - [94] = 79, + [89] = 89, + [90] = 69, + [91] = 74, + [92] = 70, + [93] = 76, + [94] = 68, [95] = 95, - [96] = 82, - [97] = 97, - [98] = 77, - [99] = 91, + [96] = 81, + [97] = 71, + [98] = 87, + [99] = 79, [100] = 100, [101] = 95, - [102] = 97, + [102] = 80, [103] = 103, - [104] = 103, - [105] = 105, - [106] = 105, - [107] = 81, - [108] = 108, - [109] = 108, + [104] = 100, + [105] = 103, + [106] = 106, + [107] = 107, + [108] = 107, + [109] = 82, [110] = 110, - [111] = 83, - [112] = 112, - [113] = 110, + [111] = 110, + [112] = 83, + [113] = 113, [114] = 84, [115] = 115, - [116] = 112, - [117] = 117, - [118] = 73, - [119] = 115, - [120] = 100, + [116] = 113, + [117] = 85, + [118] = 115, + [119] = 119, + [120] = 72, [121] = 86, - [122] = 117, - [123] = 87, - [124] = 124, + [122] = 73, + [123] = 106, + [124] = 119, [125] = 88, - [126] = 124, + [126] = 89, [127] = 127, - [128] = 127, + [128] = 128, [129] = 127, - [130] = 130, - [131] = 130, - [132] = 130, + [130] = 127, + [131] = 128, + [132] = 128, [133] = 133, [134] = 134, [135] = 135, @@ -3226,153 +3226,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [139] = 136, [140] = 136, [141] = 141, - [142] = 142, - [143] = 137, - [144] = 135, - [145] = 145, + [142] = 137, + [143] = 143, + [144] = 144, + [145] = 136, [146] = 136, [147] = 137, - [148] = 136, - [149] = 137, - [150] = 145, + [148] = 135, + [149] = 134, + [150] = 137, [151] = 137, [152] = 137, - [153] = 153, + [153] = 144, [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 157, [159] = 159, - [160] = 160, - [161] = 156, - [162] = 157, - [163] = 156, + [160] = 159, + [161] = 161, + [162] = 162, + [163] = 159, [164] = 164, - [165] = 164, - [166] = 164, - [167] = 164, - [168] = 168, - [169] = 168, - [170] = 170, + [165] = 165, + [166] = 165, + [167] = 165, + [168] = 165, + [169] = 169, + [170] = 169, [171] = 171, [172] = 172, [173] = 173, - [174] = 174, - [175] = 174, + [174] = 173, + [175] = 175, [176] = 176, - [177] = 168, + [177] = 177, [178] = 178, - [179] = 179, - [180] = 173, - [181] = 171, - [182] = 170, - [183] = 172, + [179] = 169, + [180] = 180, + [181] = 178, + [182] = 182, + [183] = 183, [184] = 184, - [185] = 185, - [186] = 174, - [187] = 187, - [188] = 174, - [189] = 189, + [185] = 171, + [186] = 178, + [187] = 172, + [188] = 178, + [189] = 184, [190] = 190, - [191] = 171, - [192] = 170, - [193] = 172, + [191] = 191, + [192] = 192, + [193] = 193, [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, + [195] = 193, + [196] = 194, + [197] = 173, [198] = 198, - [199] = 196, - [200] = 197, + [199] = 191, + [200] = 200, [201] = 201, [202] = 202, - [203] = 203, - [204] = 204, - [205] = 201, - [206] = 202, - [207] = 207, - [208] = 198, - [209] = 189, - [210] = 197, - [211] = 198, - [212] = 212, - [213] = 201, - [214] = 202, - [215] = 203, - [216] = 204, - [217] = 189, - [218] = 196, - [219] = 197, - [220] = 201, - [221] = 202, - [222] = 203, - [223] = 204, - [224] = 189, - [225] = 196, - [226] = 197, - [227] = 196, - [228] = 197, - [229] = 203, - [230] = 204, - [231] = 196, - [232] = 232, + [203] = 172, + [204] = 198, + [205] = 191, + [206] = 200, + [207] = 201, + [208] = 208, + [209] = 209, + [210] = 208, + [211] = 171, + [212] = 208, + [213] = 192, + [214] = 214, + [215] = 192, + [216] = 193, + [217] = 194, + [218] = 198, + [219] = 191, + [220] = 200, + [221] = 201, + [222] = 209, + [223] = 208, + [224] = 224, + [225] = 193, + [226] = 194, + [227] = 198, + [228] = 228, + [229] = 200, + [230] = 201, + [231] = 209, + [232] = 208, [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 233, - [239] = 239, - [240] = 233, - [241] = 233, - [242] = 242, + [234] = 209, + [235] = 208, + [236] = 209, + [237] = 209, + [238] = 238, + [239] = 238, + [240] = 240, + [241] = 238, + [242] = 238, [243] = 243, [244] = 244, [245] = 245, [246] = 246, - [247] = 245, - [248] = 244, + [247] = 247, + [248] = 248, [249] = 249, [250] = 250, - [251] = 250, + [251] = 248, [252] = 252, [253] = 249, [254] = 254, - [255] = 250, + [255] = 254, [256] = 254, - [257] = 250, - [258] = 252, - [259] = 249, - [260] = 252, - [261] = 249, - [262] = 254, - [263] = 252, - [264] = 264, + [257] = 257, + [258] = 258, + [259] = 257, + [260] = 258, + [261] = 257, + [262] = 258, + [263] = 257, + [264] = 258, [265] = 265, [266] = 266, [267] = 267, - [268] = 266, + [268] = 268, [269] = 269, [270] = 270, - [271] = 269, - [272] = 272, - [273] = 272, + [271] = 271, + [272] = 266, + [273] = 273, [274] = 274, [275] = 275, [276] = 276, - [277] = 267, - [278] = 275, - [279] = 276, + [277] = 270, + [278] = 278, + [279] = 279, [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, + [281] = 275, + [282] = 267, + [283] = 278, [284] = 284, - [285] = 264, - [286] = 274, - [287] = 265, - [288] = 288, + [285] = 284, + [286] = 280, + [287] = 274, + [288] = 271, [289] = 289, [290] = 290, [291] = 291, @@ -3386,42 +3386,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [299] = 299, [300] = 300, [301] = 301, - [302] = 296, + [302] = 302, [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, + [304] = 292, + [305] = 295, + [306] = 290, [307] = 307, - [308] = 297, - [309] = 307, + [308] = 308, + [309] = 309, [310] = 310, [311] = 311, [312] = 312, [313] = 313, [314] = 314, [315] = 315, - [316] = 316, + [316] = 312, [317] = 317, [318] = 318, - [319] = 310, + [319] = 319, [320] = 320, [321] = 321, - [322] = 321, - [323] = 313, - [324] = 324, - [325] = 325, - [326] = 320, - [327] = 327, - [328] = 328, - [329] = 311, - [330] = 312, - [331] = 325, - [332] = 327, - [333] = 316, - [334] = 317, - [335] = 314, - [336] = 318, - [337] = 337, + [322] = 322, + [323] = 323, + [324] = 314, + [325] = 311, + [326] = 326, + [327] = 321, + [328] = 318, + [329] = 322, + [330] = 326, + [331] = 315, + [332] = 320, + [333] = 333, + [334] = 333, + [335] = 323, + [336] = 336, + [337] = 319, [338] = 338, [339] = 339, [340] = 340, @@ -3429,175 +3429,175 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [342] = 342, [343] = 343, [344] = 344, - [345] = 339, + [345] = 345, [346] = 346, [347] = 347, [348] = 348, - [349] = 342, + [349] = 349, [350] = 350, - [351] = 351, + [351] = 346, [352] = 352, [353] = 353, [354] = 354, [355] = 355, - [356] = 337, - [357] = 357, - [358] = 340, - [359] = 359, + [356] = 356, + [357] = 342, + [358] = 338, + [359] = 339, [360] = 360, - [361] = 339, + [361] = 361, [362] = 362, - [363] = 342, + [363] = 363, [364] = 364, - [365] = 365, - [366] = 337, - [367] = 357, - [368] = 340, - [369] = 339, - [370] = 362, - [371] = 346, + [365] = 353, + [366] = 354, + [367] = 346, + [368] = 342, + [369] = 355, + [370] = 346, + [371] = 349, [372] = 372, - [373] = 342, - [374] = 364, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 362, - [381] = 346, - [382] = 357, - [383] = 375, - [384] = 343, - [385] = 385, - [386] = 337, - [387] = 378, - [388] = 357, - [389] = 346, - [390] = 376, - [391] = 346, - [392] = 340, - [393] = 339, - [394] = 375, - [395] = 362, - [396] = 396, - [397] = 376, - [398] = 343, - [399] = 399, - [400] = 376, - [401] = 376, - [402] = 362, + [373] = 353, + [374] = 374, + [375] = 355, + [376] = 338, + [377] = 339, + [378] = 360, + [379] = 342, + [380] = 353, + [381] = 360, + [382] = 338, + [383] = 339, + [384] = 360, + [385] = 342, + [386] = 386, + [387] = 387, + [388] = 349, + [389] = 372, + [390] = 349, + [391] = 372, + [392] = 350, + [393] = 393, + [394] = 394, + [395] = 374, + [396] = 372, + [397] = 374, + [398] = 398, + [399] = 372, + [400] = 400, + [401] = 343, + [402] = 398, [403] = 403, [404] = 404, - [405] = 342, - [406] = 406, - [407] = 337, + [405] = 405, + [406] = 346, + [407] = 407, [408] = 346, - [409] = 337, - [410] = 357, - [411] = 340, - [412] = 339, - [413] = 362, - [414] = 342, - [415] = 376, - [416] = 378, - [417] = 404, - [418] = 347, - [419] = 404, - [420] = 404, - [421] = 404, - [422] = 396, - [423] = 348, - [424] = 404, + [409] = 374, + [410] = 353, + [411] = 355, + [412] = 338, + [413] = 339, + [414] = 360, + [415] = 342, + [416] = 372, + [417] = 417, + [418] = 403, + [419] = 353, + [420] = 403, + [421] = 354, + [422] = 403, + [423] = 403, + [424] = 345, [425] = 425, - [426] = 357, - [427] = 340, - [428] = 360, + [426] = 355, + [427] = 425, + [428] = 339, [429] = 429, - [430] = 430, - [431] = 425, - [432] = 354, - [433] = 430, + [430] = 360, + [431] = 394, + [432] = 403, + [433] = 338, [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, + [435] = 405, + [436] = 348, + [437] = 347, + [438] = 355, [439] = 439, [440] = 440, - [441] = 438, + [441] = 441, [442] = 442, - [443] = 439, + [443] = 443, [444] = 444, - [445] = 445, + [445] = 444, [446] = 446, [447] = 447, - [448] = 446, - [449] = 447, + [448] = 448, + [449] = 448, [450] = 450, - [451] = 437, + [451] = 439, [452] = 452, - [453] = 442, - [454] = 444, - [455] = 445, - [456] = 435, + [453] = 453, + [454] = 447, + [455] = 455, + [456] = 441, [457] = 457, - [458] = 436, - [459] = 457, - [460] = 440, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, + [458] = 457, + [459] = 455, + [460] = 442, + [461] = 440, + [462] = 443, + [463] = 446, + [464] = 450, [465] = 465, [466] = 466, [467] = 467, - [468] = 461, + [468] = 468, [469] = 469, - [470] = 462, - [471] = 469, - [472] = 465, + [470] = 470, + [471] = 471, + [472] = 472, [473] = 473, [474] = 474, - [475] = 474, + [475] = 475, [476] = 476, - [477] = 463, + [477] = 475, [478] = 478, - [479] = 478, + [479] = 473, [480] = 480, - [481] = 467, - [482] = 482, - [483] = 473, - [484] = 466, - [485] = 485, - [486] = 464, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, + [481] = 480, + [482] = 474, + [483] = 483, + [484] = 476, + [485] = 483, + [486] = 486, + [487] = 467, + [488] = 468, + [489] = 472, + [490] = 486, + [491] = 478, + [492] = 317, [493] = 493, [494] = 494, - [495] = 489, - [496] = 324, - [497] = 497, + [495] = 495, + [496] = 496, + [497] = 493, [498] = 498, - [499] = 328, - [500] = 497, + [499] = 499, + [500] = 500, [501] = 501, [502] = 502, - [503] = 503, - [504] = 504, - [505] = 488, - [506] = 498, - [507] = 491, - [508] = 502, - [509] = 493, - [510] = 492, - [511] = 511, - [512] = 512, - [513] = 513, + [503] = 313, + [504] = 496, + [505] = 498, + [506] = 506, + [507] = 507, + [508] = 507, + [509] = 506, + [510] = 510, + [511] = 500, + [512] = 502, + [513] = 501, [514] = 514, [515] = 515, [516] = 516, @@ -3608,9 +3608,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [521] = 521, [522] = 522, [523] = 523, - [524] = 514, - [525] = 515, - [526] = 517, + [524] = 524, + [525] = 525, + [526] = 526, [527] = 527, [528] = 528, [529] = 529, @@ -3624,172 +3624,172 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [537] = 537, [538] = 538, [539] = 539, - [540] = 540, + [540] = 533, [541] = 541, [542] = 542, [543] = 543, - [544] = 527, + [544] = 544, [545] = 545, [546] = 546, [547] = 547, - [548] = 528, - [549] = 549, + [548] = 548, + [549] = 529, [550] = 550, - [551] = 551, - [552] = 529, + [551] = 531, + [552] = 538, [553] = 553, [554] = 554, - [555] = 555, - [556] = 530, - [557] = 557, - [558] = 558, + [555] = 544, + [556] = 556, + [557] = 554, + [558] = 545, [559] = 559, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 531, - [564] = 564, - [565] = 565, + [561] = 519, + [562] = 539, + [563] = 520, + [564] = 556, + [565] = 521, [566] = 566, - [567] = 532, - [568] = 533, - [569] = 534, - [570] = 570, - [571] = 571, - [572] = 535, - [573] = 536, - [574] = 574, - [575] = 537, - [576] = 538, - [577] = 539, - [578] = 512, - [579] = 540, - [580] = 541, - [581] = 542, - [582] = 582, - [583] = 543, - [584] = 513, + [567] = 525, + [568] = 526, + [569] = 530, + [570] = 532, + [571] = 535, + [572] = 537, + [573] = 541, + [574] = 543, + [575] = 547, + [576] = 548, + [577] = 550, + [578] = 566, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 579, + [583] = 583, + [584] = 584, [585] = 585, - [586] = 545, - [587] = 546, - [588] = 588, - [589] = 547, - [590] = 590, - [591] = 511, - [592] = 549, - [593] = 551, - [594] = 553, - [595] = 554, - [596] = 555, - [597] = 558, - [598] = 559, - [599] = 516, - [600] = 560, - [601] = 561, - [602] = 562, - [603] = 518, - [604] = 564, - [605] = 565, - [606] = 519, - [607] = 520, - [608] = 521, - [609] = 522, - [610] = 550, - [611] = 566, - [612] = 574, - [613] = 523, - [614] = 570, - [615] = 615, - [616] = 616, - [617] = 616, - [618] = 616, - [619] = 616, - [620] = 616, - [621] = 616, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, + [586] = 586, + [587] = 587, + [588] = 528, + [589] = 589, + [590] = 536, + [591] = 542, + [592] = 553, + [593] = 546, + [594] = 580, + [595] = 595, + [596] = 596, + [597] = 516, + [598] = 517, + [599] = 518, + [600] = 581, + [601] = 586, + [602] = 522, + [603] = 523, + [604] = 559, + [605] = 534, + [606] = 595, + [607] = 596, + [608] = 514, + [609] = 583, + [610] = 584, + [611] = 611, + [612] = 587, + [613] = 585, + [614] = 614, + [615] = 560, + [616] = 611, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 620, + [622] = 620, + [623] = 620, + [624] = 620, + [625] = 620, [626] = 626, - [627] = 625, + [627] = 627, [628] = 628, [629] = 629, - [630] = 624, + [630] = 629, [631] = 631, [632] = 632, - [633] = 625, - [634] = 626, - [635] = 629, - [636] = 636, - [637] = 628, - [638] = 628, - [639] = 631, + [633] = 633, + [634] = 634, + [635] = 626, + [636] = 626, + [637] = 637, + [638] = 638, + [639] = 639, [640] = 640, - [641] = 631, - [642] = 642, - [643] = 640, - [644] = 642, - [645] = 645, - [646] = 628, - [647] = 631, - [648] = 640, - [649] = 642, - [650] = 622, - [651] = 651, - [652] = 623, - [653] = 624, + [641] = 634, + [642] = 628, + [643] = 628, + [644] = 644, + [645] = 644, + [646] = 629, + [647] = 633, + [648] = 648, + [649] = 634, + [650] = 637, + [651] = 648, + [652] = 633, + [653] = 626, [654] = 640, - [655] = 626, - [656] = 625, - [657] = 629, - [658] = 658, - [659] = 623, - [660] = 626, - [661] = 651, - [662] = 629, - [663] = 651, - [664] = 623, - [665] = 628, - [666] = 631, - [667] = 640, - [668] = 642, - [669] = 622, - [670] = 651, - [671] = 623, - [672] = 624, - [673] = 629, - [674] = 642, - [675] = 675, - [676] = 676, - [677] = 624, - [678] = 628, - [679] = 631, - [680] = 640, - [681] = 642, - [682] = 622, - [683] = 651, - [684] = 623, - [685] = 624, - [686] = 622, - [687] = 626, - [688] = 625, - [689] = 629, - [690] = 626, - [691] = 625, - [692] = 692, + [655] = 631, + [656] = 629, + [657] = 644, + [658] = 648, + [659] = 638, + [660] = 638, + [661] = 644, + [662] = 634, + [663] = 637, + [664] = 631, + [665] = 629, + [666] = 626, + [667] = 638, + [668] = 631, + [669] = 648, + [670] = 648, + [671] = 633, + [672] = 634, + [673] = 628, + [674] = 644, + [675] = 633, + [676] = 634, + [677] = 637, + [678] = 640, + [679] = 640, + [680] = 631, + [681] = 629, + [682] = 626, + [683] = 638, + [684] = 640, + [685] = 685, + [686] = 648, + [687] = 633, + [688] = 628, + [689] = 631, + [690] = 690, + [691] = 638, + [692] = 628, [693] = 693, - [694] = 651, - [695] = 622, - [696] = 696, - [697] = 697, + [694] = 694, + [695] = 637, + [696] = 637, + [697] = 644, [698] = 698, - [699] = 699, + [699] = 640, [700] = 700, [701] = 701, [702] = 702, [703] = 703, [704] = 704, - [705] = 705, + [705] = 704, [706] = 706, [707] = 707, [708] = 708, @@ -3810,7 +3810,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [723] = 723, [724] = 724, [725] = 725, - [726] = 719, + [726] = 726, [727] = 727, [728] = 728, [729] = 729, @@ -3821,366 +3821,366 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [734] = 734, [735] = 735, [736] = 736, - [737] = 735, - [738] = 693, + [737] = 737, + [738] = 738, [739] = 739, [740] = 740, - [741] = 740, - [742] = 742, + [741] = 741, + [742] = 739, [743] = 743, [744] = 744, - [745] = 744, + [745] = 745, [746] = 746, [747] = 747, [748] = 748, - [749] = 749, - [750] = 750, - [751] = 743, - [752] = 692, - [753] = 739, - [754] = 742, - [755] = 746, - [756] = 747, - [757] = 736, - [758] = 748, - [759] = 675, - [760] = 676, - [761] = 749, - [762] = 750, - [763] = 719, - [764] = 764, - [765] = 719, - [766] = 645, - [767] = 675, - [768] = 676, - [769] = 658, - [770] = 692, + [749] = 690, + [750] = 693, + [751] = 751, + [752] = 752, + [753] = 685, + [754] = 627, + [755] = 751, + [756] = 752, + [757] = 757, + [758] = 743, + [759] = 744, + [760] = 745, + [761] = 746, + [762] = 740, + [763] = 741, + [764] = 757, + [765] = 748, + [766] = 747, + [767] = 736, + [768] = 685, + [769] = 627, + [770] = 690, [771] = 693, - [772] = 700, - [773] = 764, - [774] = 676, - [775] = 645, - [776] = 658, - [777] = 720, - [778] = 693, - [779] = 692, - [780] = 719, - [781] = 781, - [782] = 675, - [783] = 781, - [784] = 740, - [785] = 739, - [786] = 740, - [787] = 697, - [788] = 698, - [789] = 744, - [790] = 736, - [791] = 735, - [792] = 719, - [793] = 645, - [794] = 658, - [795] = 696, - [796] = 699, - [797] = 743, - [798] = 746, - [799] = 735, + [772] = 698, + [773] = 704, + [774] = 774, + [775] = 704, + [776] = 685, + [777] = 627, + [778] = 778, + [779] = 694, + [780] = 704, + [781] = 694, + [782] = 698, + [783] = 737, + [784] = 690, + [785] = 693, + [786] = 778, + [787] = 774, + [788] = 741, + [789] = 704, + [790] = 694, + [791] = 698, + [792] = 702, + [793] = 701, + [794] = 703, + [795] = 700, + [796] = 751, + [797] = 752, + [798] = 757, + [799] = 747, [800] = 740, - [801] = 746, - [802] = 747, - [803] = 746, - [804] = 744, - [805] = 748, - [806] = 749, - [807] = 750, - [808] = 743, - [809] = 748, - [810] = 739, - [811] = 742, - [812] = 749, + [801] = 739, + [802] = 743, + [803] = 744, + [804] = 748, + [805] = 747, + [806] = 745, + [807] = 746, + [808] = 747, + [809] = 752, + [810] = 757, + [811] = 739, + [812] = 743, [813] = 744, - [814] = 736, - [815] = 750, - [816] = 743, - [817] = 747, + [814] = 745, + [815] = 746, + [816] = 740, + [817] = 741, [818] = 748, - [819] = 739, - [820] = 742, - [821] = 742, - [822] = 736, - [823] = 749, - [824] = 750, - [825] = 735, - [826] = 747, - [827] = 827, - [828] = 828, - [829] = 781, - [830] = 827, - [831] = 746, - [832] = 747, - [833] = 735, - [834] = 571, - [835] = 740, - [836] = 697, - [837] = 698, - [838] = 748, - [839] = 839, - [840] = 749, - [841] = 750, - [842] = 503, - [843] = 696, - [844] = 764, - [845] = 739, - [846] = 742, - [847] = 847, - [848] = 582, - [849] = 487, - [850] = 764, - [851] = 781, - [852] = 696, - [853] = 697, - [854] = 854, - [855] = 744, - [856] = 736, - [857] = 699, + [819] = 751, + [820] = 752, + [821] = 757, + [822] = 739, + [823] = 743, + [824] = 744, + [825] = 745, + [826] = 746, + [827] = 740, + [828] = 741, + [829] = 748, + [830] = 751, + [831] = 778, + [832] = 778, + [833] = 748, + [834] = 701, + [835] = 774, + [836] = 774, + [837] = 778, + [838] = 515, + [839] = 747, + [840] = 700, + [841] = 841, + [842] = 614, + [843] = 702, + [844] = 751, + [845] = 752, + [846] = 702, + [847] = 701, + [848] = 703, + [849] = 617, + [850] = 494, + [851] = 524, + [852] = 703, + [853] = 700, + [854] = 774, + [855] = 855, + [856] = 757, + [857] = 857, [858] = 858, - [859] = 585, - [860] = 698, - [861] = 557, - [862] = 862, - [863] = 781, - [864] = 699, - [865] = 764, - [866] = 743, - [867] = 718, - [868] = 732, - [869] = 701, - [870] = 715, - [871] = 781, - [872] = 582, - [873] = 709, - [874] = 874, - [875] = 875, - [876] = 710, - [877] = 557, - [878] = 725, - [879] = 764, - [880] = 711, - [881] = 733, - [882] = 701, - [883] = 571, - [884] = 709, - [885] = 721, - [886] = 707, - [887] = 722, - [888] = 710, - [889] = 889, - [890] = 703, - [891] = 708, - [892] = 711, - [893] = 731, - [894] = 704, - [895] = 702, - [896] = 708, - [897] = 706, - [898] = 723, - [899] = 899, - [900] = 734, - [901] = 714, - [902] = 712, - [903] = 734, - [904] = 700, - [905] = 720, - [906] = 705, - [907] = 732, - [908] = 718, - [909] = 700, - [910] = 720, - [911] = 721, - [912] = 722, - [913] = 723, - [914] = 724, - [915] = 713, - [916] = 324, - [917] = 733, - [918] = 724, - [919] = 717, - [920] = 725, - [921] = 728, - [922] = 730, - [923] = 923, - [924] = 924, - [925] = 729, - [926] = 704, - [927] = 714, - [928] = 716, - [929] = 716, - [930] = 731, - [931] = 702, - [932] = 713, - [933] = 727, - [934] = 728, - [935] = 729, - [936] = 727, - [937] = 705, - [938] = 703, - [939] = 715, - [940] = 706, - [941] = 707, - [942] = 712, - [943] = 328, - [944] = 730, - [945] = 717, - [946] = 722, - [947] = 728, - [948] = 729, - [949] = 707, - [950] = 708, - [951] = 703, - [952] = 706, - [953] = 712, - [954] = 862, - [955] = 328, - [956] = 723, - [957] = 717, - [958] = 704, - [959] = 705, - [960] = 714, - [961] = 730, - [962] = 732, - [963] = 701, - [964] = 715, - [965] = 709, - [966] = 710, - [967] = 724, - [968] = 711, - [969] = 969, + [859] = 618, + [860] = 470, + [861] = 861, + [862] = 739, + [863] = 743, + [864] = 744, + [865] = 745, + [866] = 746, + [867] = 740, + [868] = 741, + [869] = 869, + [870] = 869, + [871] = 871, + [872] = 499, + [873] = 734, + [874] = 723, + [875] = 724, + [876] = 313, + [877] = 723, + [878] = 707, + [879] = 725, + [880] = 726, + [881] = 727, + [882] = 728, + [883] = 729, + [884] = 730, + [885] = 731, + [886] = 732, + [887] = 733, + [888] = 734, + [889] = 735, + [890] = 709, + [891] = 710, + [892] = 736, + [893] = 737, + [894] = 711, + [895] = 708, + [896] = 896, + [897] = 897, + [898] = 725, + [899] = 712, + [900] = 716, + [901] = 713, + [902] = 714, + [903] = 726, + [904] = 727, + [905] = 728, + [906] = 317, + [907] = 778, + [908] = 729, + [909] = 730, + [910] = 731, + [911] = 706, + [912] = 715, + [913] = 774, + [914] = 515, + [915] = 736, + [916] = 737, + [917] = 614, + [918] = 706, + [919] = 715, + [920] = 719, + [921] = 709, + [922] = 710, + [923] = 707, + [924] = 524, + [925] = 708, + [926] = 738, + [927] = 713, + [928] = 721, + [929] = 724, + [930] = 722, + [931] = 931, + [932] = 711, + [933] = 716, + [934] = 934, + [935] = 935, + [936] = 714, + [937] = 717, + [938] = 718, + [939] = 939, + [940] = 719, + [941] = 732, + [942] = 733, + [943] = 718, + [944] = 738, + [945] = 735, + [946] = 721, + [947] = 717, + [948] = 722, + [949] = 720, + [950] = 720, + [951] = 712, + [952] = 722, + [953] = 708, + [954] = 709, + [955] = 710, + [956] = 711, + [957] = 712, + [958] = 713, + [959] = 317, + [960] = 715, + [961] = 716, + [962] = 717, + [963] = 718, + [964] = 719, + [965] = 738, + [966] = 721, + [967] = 723, + [968] = 724, + [969] = 313, [970] = 725, - [971] = 828, - [972] = 972, - [973] = 973, - [974] = 718, - [975] = 324, - [976] = 721, - [977] = 716, + [971] = 726, + [972] = 727, + [973] = 728, + [974] = 729, + [975] = 730, + [976] = 731, + [977] = 732, [978] = 733, [979] = 734, - [980] = 980, - [981] = 731, - [982] = 702, - [983] = 713, - [984] = 727, - [985] = 985, - [986] = 986, + [980] = 735, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 858, + [985] = 720, + [986] = 857, [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, + [988] = 706, + [989] = 707, + [990] = 714, [991] = 991, - [992] = 991, - [993] = 990, + [992] = 992, + [993] = 993, [994] = 994, [995] = 995, - [996] = 991, + [996] = 996, [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 991, - [1001] = 1001, + [998] = 997, + [999] = 996, + [1000] = 1000, + [1001] = 996, [1002] = 1002, - [1003] = 991, - [1004] = 1004, - [1005] = 990, - [1006] = 990, + [1003] = 996, + [1004] = 997, + [1005] = 1005, + [1006] = 1006, [1007] = 1007, - [1008] = 990, + [1008] = 997, [1009] = 1009, - [1010] = 990, - [1011] = 991, + [1010] = 1010, + [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 1014, - [1015] = 1014, - [1016] = 1014, + [1014] = 997, + [1015] = 996, + [1016] = 997, [1017] = 1017, - [1018] = 1014, - [1019] = 1019, - [1020] = 1014, - [1021] = 1014, + [1018] = 1018, + [1019] = 996, + [1020] = 1020, + [1021] = 1021, [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 1024, - [1026] = 1026, - [1027] = 1027, - [1028] = 1027, + [1023] = 1021, + [1024] = 1021, + [1025] = 1021, + [1026] = 1021, + [1027] = 1021, + [1028] = 1028, [1029] = 1029, - [1030] = 1029, + [1030] = 1030, [1031] = 1031, - [1032] = 1032, + [1032] = 1031, [1033] = 1033, - [1034] = 1034, + [1034] = 1033, [1035] = 1035, - [1036] = 1036, + [1036] = 1035, [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1038, - [1043] = 1039, - [1044] = 1038, - [1045] = 1039, - [1046] = 1040, - [1047] = 1037, - [1048] = 1038, - [1049] = 1039, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1041, + [1048] = 1048, + [1049] = 1044, [1050] = 1040, - [1051] = 1037, - [1052] = 1039, - [1053] = 1037, - [1054] = 1040, - [1055] = 1041, - [1056] = 1056, - [1057] = 1057, - [1058] = 1041, - [1059] = 1041, - [1060] = 1060, - [1061] = 1061, - [1062] = 1037, - [1063] = 1063, + [1051] = 1046, + [1052] = 1052, + [1053] = 1053, + [1054] = 1044, + [1055] = 1040, + [1056] = 1052, + [1057] = 1046, + [1058] = 1052, + [1059] = 1044, + [1060] = 1044, + [1061] = 1040, + [1062] = 1046, + [1063] = 1041, [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, + [1065] = 1046, + [1066] = 1052, + [1067] = 1041, [1068] = 1068, - [1069] = 1065, - [1070] = 1068, - [1071] = 1064, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1063, - [1075] = 1064, - [1076] = 1076, + [1074] = 1070, + [1075] = 1075, + [1076] = 1072, [1077] = 1077, - [1078] = 1067, + [1078] = 1078, [1079] = 1079, - [1080] = 1072, - [1081] = 1073, - [1082] = 1066, - [1083] = 1068, - [1084] = 1079, - [1085] = 1079, - [1086] = 1079, - [1087] = 1064, - [1088] = 1088, - [1089] = 1076, - [1090] = 1068, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1071, + [1084] = 1070, + [1085] = 1077, + [1086] = 1070, + [1087] = 1075, + [1088] = 1073, + [1089] = 1082, + [1090] = 1080, + [1091] = 1081, + [1092] = 1080, + [1093] = 1075, + [1094] = 1075, + [1095] = 1080, + [1096] = 1069, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -4188,34 +4188,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1032, + [1104] = 1104, [1105] = 1105, - [1106] = 1031, + [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 1109, + [1109] = 1098, [1110] = 1110, [1111] = 1111, - [1112] = 1112, + [1112] = 1071, [1113] = 1113, [1114] = 1114, - [1115] = 1115, + [1115] = 1073, [1116] = 1116, [1117] = 1117, - [1118] = 1118, - [1119] = 1067, - [1120] = 1072, - [1121] = 1073, - [1122] = 1076, - [1123] = 1063, - [1124] = 1066, - [1125] = 1065, - [1126] = 1073, + [1118] = 1077, + [1119] = 1119, + [1120] = 1120, + [1121] = 1072, + [1122] = 1122, + [1123] = 1081, + [1124] = 1124, + [1125] = 1125, + [1126] = 1037, [1127] = 1127, - [1128] = 1127, - [1129] = 1129, + [1128] = 1128, + [1129] = 1038, [1130] = 1130, - [1131] = 1094, + [1131] = 1037, [1132] = 1132, [1133] = 1133, [1134] = 1134, @@ -4223,119 +4223,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1139, + [1139] = 1098, [1140] = 1140, - [1141] = 1067, - [1142] = 1094, + [1141] = 1141, + [1142] = 1142, [1143] = 1143, - [1144] = 1102, - [1145] = 1066, - [1146] = 1076, - [1147] = 1063, + [1144] = 1120, + [1145] = 1038, + [1146] = 1146, + [1147] = 1069, [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1143, - [1152] = 1065, - [1153] = 1153, - [1154] = 1153, - [1155] = 1072, - [1156] = 1032, - [1157] = 1157, - [1158] = 1067, - [1159] = 1072, - [1160] = 1073, - [1161] = 1076, - [1162] = 1063, - [1163] = 1066, - [1164] = 1065, - [1165] = 1165, - [1166] = 1166, - [1167] = 1031, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, + [1151] = 1151, + [1152] = 1081, + [1153] = 1081, + [1154] = 1077, + [1155] = 1073, + [1156] = 1069, + [1157] = 1071, + [1158] = 1158, + [1159] = 1098, + [1160] = 1160, + [1161] = 1082, + [1162] = 1077, + [1163] = 1082, + [1164] = 1073, + [1165] = 1069, + [1166] = 1072, + [1167] = 1071, + [1168] = 1082, + [1169] = 1125, + [1170] = 1072, [1171] = 1171, - [1172] = 1172, + [1172] = 1146, [1173] = 1173, [1174] = 1174, - [1175] = 1175, + [1175] = 1107, [1176] = 1176, [1177] = 1177, - [1178] = 1066, + [1178] = 1178, [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 1182, + [1182] = 1077, [1183] = 1183, - [1184] = 1143, - [1185] = 1065, + [1184] = 1184, + [1185] = 1185, [1186] = 1186, - [1187] = 1067, - [1188] = 1188, - [1189] = 1031, - [1190] = 1190, + [1187] = 1187, + [1188] = 1082, + [1189] = 1073, + [1190] = 1069, [1191] = 1191, - [1192] = 1170, + [1192] = 1192, [1193] = 1193, - [1194] = 1072, - [1195] = 1102, - [1196] = 1188, - [1197] = 1073, - [1198] = 1076, - [1199] = 1170, - [1200] = 1063, - [1201] = 1201, + [1194] = 1184, + [1195] = 1195, + [1196] = 1186, + [1197] = 1072, + [1198] = 1037, + [1199] = 1199, + [1200] = 1200, + [1201] = 1071, [1202] = 1202, [1203] = 1203, - [1204] = 1174, + [1204] = 1204, [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1171, - [1210] = 1203, - [1211] = 1032, - [1212] = 1153, - [1213] = 1175, - [1214] = 1170, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, + [1206] = 1203, + [1207] = 1184, + [1208] = 1177, + [1209] = 1193, + [1210] = 1107, + [1211] = 1186, + [1212] = 1186, + [1213] = 1213, + [1214] = 1081, + [1215] = 1195, + [1216] = 1183, + [1217] = 1202, + [1218] = 1204, + [1219] = 1120, + [1220] = 1125, + [1221] = 1199, [1222] = 1222, [1223] = 1223, - [1224] = 1222, + [1224] = 1224, [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1217, - [1229] = 1229, - [1230] = 1230, + [1226] = 1202, + [1227] = 1204, + [1228] = 1203, + [1229] = 1202, + [1230] = 1204, [1231] = 1231, - [1232] = 1232, - [1233] = 1231, + [1232] = 1203, + [1233] = 1038, [1234] = 1234, [1235] = 1235, - [1236] = 1236, + [1236] = 1184, [1237] = 1237, - [1238] = 1238, + [1238] = 1125, [1239] = 1239, [1240] = 1240, - [1241] = 1238, - [1242] = 1242, - [1243] = 1201, + [1241] = 1241, + [1242] = 1039, + [1243] = 1243, [1244] = 1244, - [1245] = 1234, - [1246] = 1237, - [1247] = 1219, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, [1248] = 1248, - [1249] = 1033, - [1250] = 1220, - [1251] = 1251, + [1249] = 1249, + [1250] = 1250, + [1251] = 1245, [1252] = 1252, [1253] = 1253, [1254] = 1254, @@ -4344,52 +4344,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1180, + [1260] = 1260, [1261] = 1261, - [1262] = 1262, + [1262] = 1256, [1263] = 1263, [1264] = 1264, - [1265] = 1265, - [1266] = 1262, + [1265] = 1253, + [1266] = 1266, [1267] = 1267, [1268] = 1268, [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1220, - [1273] = 1273, - [1274] = 1188, + [1270] = 1249, + [1271] = 1231, + [1272] = 1272, + [1273] = 1272, + [1274] = 1243, [1275] = 1275, [1276] = 1276, - [1277] = 1277, - [1278] = 1219, - [1279] = 1279, + [1277] = 1276, + [1278] = 1278, + [1279] = 1250, [1280] = 1280, [1281] = 1281, [1282] = 1282, - [1283] = 1273, - [1284] = 1231, + [1283] = 1283, + [1284] = 1284, [1285] = 1285, - [1286] = 1286, + [1286] = 1272, [1287] = 1287, - [1288] = 1288, + [1288] = 1243, [1289] = 1289, [1290] = 1290, - [1291] = 1269, - [1292] = 1292, - [1293] = 1293, - [1294] = 1056, + [1291] = 1291, + [1292] = 1224, + [1293] = 1053, + [1294] = 1294, [1295] = 1295, - [1296] = 1295, + [1296] = 1289, [1297] = 1297, [1298] = 1298, - [1299] = 1299, + [1299] = 1249, [1300] = 1300, - [1301] = 1299, + [1301] = 1291, [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1300, + [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, @@ -4398,12 +4398,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1311] = 1311, [1312] = 1312, [1313] = 1313, - [1314] = 1061, - [1315] = 1035, - [1316] = 1316, - [1317] = 1262, - [1318] = 1308, - [1319] = 1281, + [1314] = 1285, + [1315] = 1315, + [1316] = 1199, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, [1320] = 1320, [1321] = 1321, [1322] = 1322, @@ -4416,208 +4416,208 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1299, + [1332] = 1332, [1333] = 1333, - [1334] = 1289, - [1335] = 1300, - [1336] = 1306, - [1337] = 1337, - [1338] = 1338, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1300, + [1338] = 1304, [1339] = 1339, - [1340] = 1340, + [1340] = 1324, [1341] = 1341, [1342] = 1342, - [1343] = 1306, + [1343] = 1343, [1344] = 1344, - [1345] = 1306, - [1346] = 1346, + [1345] = 1345, + [1346] = 1345, [1347] = 1347, [1348] = 1348, - [1349] = 1306, + [1349] = 1349, [1350] = 1350, - [1351] = 1312, - [1352] = 1337, - [1353] = 1353, + [1351] = 1328, + [1352] = 1352, + [1353] = 1347, [1354] = 1354, - [1355] = 1309, - [1356] = 1327, + [1355] = 1355, + [1356] = 1330, [1357] = 1357, - [1358] = 1264, + [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, + [1361] = 1347, + [1362] = 1290, [1363] = 1363, - [1364] = 1357, - [1365] = 1365, + [1364] = 1364, + [1365] = 1347, [1366] = 1366, - [1367] = 1303, - [1368] = 1304, - [1369] = 1306, + [1367] = 1347, + [1368] = 1368, + [1369] = 1068, [1370] = 1370, - [1371] = 1371, + [1371] = 1359, [1372] = 1372, - [1373] = 1373, + [1373] = 1043, [1374] = 1374, - [1375] = 1307, - [1376] = 1359, - [1377] = 1377, - [1378] = 1378, + [1375] = 1334, + [1376] = 1350, + [1377] = 1363, + [1378] = 1331, [1379] = 1379, [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1384, + [1384] = 1302, [1385] = 1385, - [1386] = 1386, - [1387] = 1384, - [1388] = 696, + [1386] = 1370, + [1387] = 1347, + [1388] = 1388, [1389] = 1389, [1390] = 1390, [1391] = 1391, [1392] = 1392, - [1393] = 1393, + [1393] = 1291, [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1398, - [1399] = 1399, + [1398] = 1396, + [1399] = 1328, [1400] = 1400, [1401] = 1401, - [1402] = 1393, - [1403] = 1403, - [1404] = 1395, - [1405] = 1394, - [1406] = 1320, + [1402] = 1345, + [1403] = 1397, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, [1407] = 1407, [1408] = 1408, - [1409] = 1322, + [1409] = 1409, [1410] = 1410, [1411] = 1411, - [1412] = 1379, + [1412] = 1412, [1413] = 1413, - [1414] = 1251, - [1415] = 1384, - [1416] = 1393, - [1417] = 1394, + [1414] = 1335, + [1415] = 1336, + [1416] = 1416, + [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1397, + [1420] = 1420, [1421] = 1421, - [1422] = 1399, - [1423] = 1400, + [1422] = 1422, + [1423] = 1423, [1424] = 1424, [1425] = 1425, - [1426] = 1407, + [1426] = 1426, [1427] = 1427, - [1428] = 1386, - [1429] = 697, - [1430] = 1395, - [1431] = 1431, - [1432] = 1407, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1281, + [1432] = 1432, [1433] = 1433, - [1434] = 1397, + [1434] = 1434, [1435] = 1435, - [1436] = 1379, - [1437] = 1413, - [1438] = 1399, - [1439] = 1384, - [1440] = 1393, - [1441] = 1400, - [1442] = 1394, + [1436] = 1436, + [1437] = 1437, + [1438] = 1329, + [1439] = 1439, + [1440] = 1339, + [1441] = 1441, + [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1397, + [1445] = 1406, [1446] = 1446, - [1447] = 1399, - [1448] = 1400, + [1447] = 1432, + [1448] = 1448, [1449] = 1449, - [1450] = 1425, - [1451] = 1344, + [1450] = 1449, + [1451] = 1451, [1452] = 1452, [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, + [1456] = 1412, + [1457] = 1413, + [1458] = 1434, + [1459] = 1441, [1460] = 1460, - [1461] = 1461, + [1461] = 1432, [1462] = 1462, - [1463] = 1463, - [1464] = 1252, + [1463] = 1259, + [1464] = 1432, [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1463, + [1466] = 1449, + [1467] = 1327, + [1468] = 1452, + [1469] = 1453, + [1470] = 1454, [1471] = 1471, - [1472] = 1472, - [1473] = 1326, + [1472] = 1412, + [1473] = 1413, [1474] = 1474, - [1475] = 1328, - [1476] = 1230, + [1475] = 1434, + [1476] = 1441, [1477] = 1477, [1478] = 1478, - [1479] = 1395, + [1479] = 1449, [1480] = 1480, [1481] = 1481, - [1482] = 1482, - [1483] = 1483, + [1482] = 1452, + [1483] = 1481, [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1372, + [1485] = 702, + [1486] = 1452, + [1487] = 1487, [1488] = 1488, [1489] = 1489, - [1490] = 1490, + [1490] = 1453, [1491] = 1491, - [1492] = 1226, - [1493] = 1452, + [1492] = 1492, + [1493] = 1493, [1494] = 1494, - [1495] = 1495, - [1496] = 1401, - [1497] = 1497, - [1498] = 1379, + [1495] = 1407, + [1496] = 1452, + [1497] = 1453, + [1498] = 1498, [1499] = 1499, - [1500] = 1324, - [1501] = 1413, - [1502] = 1410, - [1503] = 1467, + [1500] = 1500, + [1501] = 1454, + [1502] = 1435, + [1503] = 1465, [1504] = 1504, - [1505] = 1407, + [1505] = 1505, [1506] = 1506, - [1507] = 1413, - [1508] = 1411, - [1509] = 1478, + [1507] = 1507, + [1508] = 1260, + [1509] = 703, [1510] = 1510, - [1511] = 1453, + [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1518, - [1521] = 1521, + [1516] = 1383, + [1517] = 1275, + [1518] = 1454, + [1519] = 1487, + [1520] = 1491, + [1521] = 1412, [1522] = 1522, - [1523] = 320, + [1523] = 1413, [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, + [1525] = 1434, + [1526] = 1441, + [1527] = 1492, [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, + [1529] = 1358, + [1530] = 1515, + [1531] = 1405, [1532] = 1532, - [1533] = 1186, + [1533] = 333, [1534] = 1534, [1535] = 1535, [1536] = 1536, @@ -4626,82 +4626,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1539] = 1539, [1540] = 1540, [1541] = 1541, - [1542] = 321, - [1543] = 1539, + [1542] = 1442, + [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 1531, + [1546] = 1546, [1547] = 1547, - [1548] = 1548, + [1548] = 1538, [1549] = 1549, [1550] = 1550, [1551] = 1551, [1552] = 1552, - [1553] = 1381, - [1554] = 1391, - [1555] = 1550, - [1556] = 1547, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, + [1560] = 1546, [1561] = 1561, - [1562] = 1548, + [1562] = 1562, [1563] = 1563, - [1564] = 310, + [1564] = 1551, [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1518, - [1569] = 1569, + [1568] = 1568, + [1569] = 1237, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1510, - [1575] = 318, - [1576] = 1576, + [1574] = 1574, + [1575] = 1575, + [1576] = 1544, [1577] = 1577, [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 327, - [1582] = 1538, - [1583] = 1512, + [1581] = 1581, + [1582] = 318, + [1583] = 311, [1584] = 1584, [1585] = 1585, [1586] = 1586, - [1587] = 1545, - [1588] = 1588, + [1587] = 1587, + [1588] = 1573, [1589] = 1589, - [1590] = 1590, + [1590] = 1573, [1591] = 1591, [1592] = 1592, [1593] = 1593, - [1594] = 1594, + [1594] = 1547, [1595] = 1595, [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 1599, - [1600] = 1600, + [1597] = 1572, + [1598] = 312, + [1599] = 1574, + [1600] = 1428, [1601] = 1601, [1602] = 1602, [1603] = 1603, [1604] = 1604, [1605] = 1605, - [1606] = 1606, - [1607] = 1607, - [1608] = 1594, + [1606] = 1507, + [1607] = 326, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, - [1612] = 1612, + [1612] = 1541, [1613] = 1613, [1614] = 1614, [1615] = 1615, [1616] = 1616, - [1617] = 1617, + [1617] = 1616, [1618] = 1618, [1619] = 1619, [1620] = 1620, @@ -4711,113 +4711,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1609, - [1628] = 1617, + [1627] = 1627, + [1628] = 1618, [1629] = 1629, - [1630] = 1593, + [1630] = 1630, [1631] = 1631, - [1632] = 1614, + [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, [1636] = 1636, - [1637] = 1615, - [1638] = 1616, + [1637] = 1635, + [1638] = 1638, [1639] = 1639, - [1640] = 1640, + [1640] = 1615, [1641] = 1641, - [1642] = 1622, - [1643] = 1615, - [1644] = 1620, - [1645] = 1599, + [1642] = 1642, + [1643] = 1643, + [1644] = 1630, + [1645] = 1636, [1646] = 1646, - [1647] = 1633, + [1647] = 1647, [1648] = 1648, - [1649] = 1621, + [1649] = 1643, [1650] = 1650, - [1651] = 1607, + [1651] = 1651, [1652] = 1652, - [1653] = 1611, - [1654] = 1600, - [1655] = 1655, - [1656] = 1641, - [1657] = 1652, - [1658] = 1658, + [1653] = 1653, + [1654] = 1654, + [1655] = 1654, + [1656] = 1621, + [1657] = 1657, + [1658] = 1657, [1659] = 1659, - [1660] = 1660, - [1661] = 1661, - [1662] = 1597, - [1663] = 1663, + [1660] = 1614, + [1661] = 1647, + [1662] = 1662, + [1663] = 1634, [1664] = 1664, [1665] = 1665, - [1666] = 1603, - [1667] = 1601, - [1668] = 1668, - [1669] = 1655, - [1670] = 1652, + [1666] = 1624, + [1667] = 1639, + [1668] = 1631, + [1669] = 1657, + [1670] = 1670, [1671] = 1671, - [1672] = 1603, - [1673] = 1655, - [1674] = 1664, + [1672] = 1619, + [1673] = 1618, + [1674] = 1674, [1675] = 1675, [1676] = 1676, - [1677] = 1677, - [1678] = 1601, - [1679] = 1655, - [1680] = 1618, - [1681] = 1594, - [1682] = 1622, - [1683] = 1641, - [1684] = 1616, - [1685] = 1685, - [1686] = 1659, - [1687] = 1618, - [1688] = 1629, + [1677] = 1651, + [1678] = 1678, + [1679] = 1679, + [1680] = 1665, + [1681] = 1631, + [1682] = 1682, + [1683] = 1683, + [1684] = 1615, + [1685] = 1664, + [1686] = 1654, + [1687] = 1629, + [1688] = 1624, [1689] = 1689, [1690] = 1690, - [1691] = 1641, - [1692] = 1618, - [1693] = 1626, - [1694] = 1694, - [1695] = 1593, - [1696] = 1594, - [1697] = 1697, - [1698] = 1626, - [1699] = 1660, - [1700] = 1700, - [1701] = 1593, - [1702] = 1663, - [1703] = 1634, + [1691] = 1639, + [1692] = 1657, + [1693] = 1632, + [1694] = 1614, + [1695] = 1676, + [1696] = 1696, + [1697] = 1639, + [1698] = 1619, + [1699] = 1699, + [1700] = 1664, + [1701] = 1626, + [1702] = 1619, + [1703] = 1631, [1704] = 1704, - [1705] = 1622, - [1706] = 1592, + [1705] = 1705, + [1706] = 1706, [1707] = 1707, - [1708] = 1616, - [1709] = 1596, - [1710] = 1622, - [1711] = 1711, - [1712] = 1619, - [1713] = 1713, - [1714] = 1714, - [1715] = 1676, - [1716] = 1626, - [1717] = 1717, - [1718] = 1694, - [1719] = 1603, - [1720] = 1622, - [1721] = 1601, - [1722] = 1615, - [1723] = 1641, - [1724] = 1671, - [1725] = 1639, - [1726] = 1659, - [1727] = 1612, - [1728] = 1668, - [1729] = 1641, - [1730] = 1648, - [1731] = 1652, - [1732] = 1659, - [1733] = 1624, + [1708] = 1708, + [1709] = 1709, + [1710] = 1619, + [1711] = 1618, + [1712] = 1712, + [1713] = 1675, + [1714] = 1665, + [1715] = 1648, + [1716] = 1613, + [1717] = 1676, + [1718] = 1718, + [1719] = 1622, + [1720] = 1683, + [1721] = 1654, + [1722] = 1675, + [1723] = 1659, + [1724] = 1665, + [1725] = 1725, + [1726] = 1726, + [1727] = 1624, + [1728] = 1676, + [1729] = 1639, + [1730] = 1619, + [1731] = 1731, + [1732] = 1639, + [1733] = 1664, + [1734] = 1641, + [1735] = 1614, + [1736] = 1736, + [1737] = 1615, + [1738] = 1738, + [1739] = 1736, + [1740] = 1740, + [1741] = 1646, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1699, + [1746] = 1705, + [1747] = 1642, + [1748] = 1748, + [1749] = 1740, + [1750] = 1748, + [1751] = 1718, + [1752] = 1752, + [1753] = 1725, + [1754] = 1675, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -6509,9 +6530,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 51, .external_lex_state = 3}, [60] = {.lex_state = 51, .external_lex_state = 3}, [61] = {.lex_state = 51, .external_lex_state = 3}, - [62] = {.lex_state = 51, .external_lex_state = 2}, + [62] = {.lex_state = 51, .external_lex_state = 3}, [63] = {.lex_state = 51, .external_lex_state = 3}, - [64] = {.lex_state = 51, .external_lex_state = 3}, + [64] = {.lex_state = 51, .external_lex_state = 2}, [65] = {.lex_state = 51, .external_lex_state = 2}, [66] = {.lex_state = 51, .external_lex_state = 4}, [67] = {.lex_state = 51, .external_lex_state = 4}, @@ -6522,10 +6543,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 51, .external_lex_state = 5}, [73] = {.lex_state = 51, .external_lex_state = 5}, [74] = {.lex_state = 51, .external_lex_state = 5}, - [75] = {.lex_state = 51, .external_lex_state = 4}, + [75] = {.lex_state = 51, .external_lex_state = 5}, [76] = {.lex_state = 51, .external_lex_state = 5}, [77] = {.lex_state = 51, .external_lex_state = 5}, - [78] = {.lex_state = 51, .external_lex_state = 5}, + [78] = {.lex_state = 51, .external_lex_state = 4}, [79] = {.lex_state = 51, .external_lex_state = 5}, [80] = {.lex_state = 51, .external_lex_state = 5}, [81] = {.lex_state = 51, .external_lex_state = 5}, @@ -6581,23 +6602,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 51, .external_lex_state = 4}, [132] = {.lex_state = 51, .external_lex_state = 4}, [133] = {.lex_state = 51, .external_lex_state = 2}, - [134] = {.lex_state = 51, .external_lex_state = 2}, - [135] = {.lex_state = 51, .external_lex_state = 4}, + [134] = {.lex_state = 51, .external_lex_state = 4}, + [135] = {.lex_state = 51, .external_lex_state = 2}, [136] = {.lex_state = 51, .external_lex_state = 2}, [137] = {.lex_state = 51, .external_lex_state = 2}, [138] = {.lex_state = 51, .external_lex_state = 2}, - [139] = {.lex_state = 51, .external_lex_state = 4}, - [140] = {.lex_state = 14, .external_lex_state = 2}, + [139] = {.lex_state = 14, .external_lex_state = 2}, + [140] = {.lex_state = 51, .external_lex_state = 4}, [141] = {.lex_state = 51, .external_lex_state = 2}, [142] = {.lex_state = 51, .external_lex_state = 2}, [143] = {.lex_state = 51, .external_lex_state = 2}, [144] = {.lex_state = 51, .external_lex_state = 2}, [145] = {.lex_state = 51, .external_lex_state = 2}, [146] = {.lex_state = 51, .external_lex_state = 2}, - [147] = {.lex_state = 51, .external_lex_state = 4}, + [147] = {.lex_state = 14, .external_lex_state = 2}, [148] = {.lex_state = 51, .external_lex_state = 2}, - [149] = {.lex_state = 14, .external_lex_state = 2}, - [150] = {.lex_state = 51, .external_lex_state = 2}, + [149] = {.lex_state = 51, .external_lex_state = 2}, + [150] = {.lex_state = 51, .external_lex_state = 4}, [151] = {.lex_state = 51, .external_lex_state = 2}, [152] = {.lex_state = 51, .external_lex_state = 2}, [153] = {.lex_state = 51, .external_lex_state = 2}, @@ -6621,36 +6642,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [171] = {.lex_state = 51, .external_lex_state = 2}, [172] = {.lex_state = 51, .external_lex_state = 2}, [173] = {.lex_state = 51, .external_lex_state = 2}, - [174] = {.lex_state = 51, .external_lex_state = 2}, + [174] = {.lex_state = 14, .external_lex_state = 2}, [175] = {.lex_state = 51, .external_lex_state = 2}, [176] = {.lex_state = 51, .external_lex_state = 2}, - [177] = {.lex_state = 51, .external_lex_state = 4}, - [178] = {.lex_state = 51, .external_lex_state = 4}, - [179] = {.lex_state = 51, .external_lex_state = 2}, + [177] = {.lex_state = 51, .external_lex_state = 2}, + [178] = {.lex_state = 51, .external_lex_state = 2}, + [179] = {.lex_state = 51, .external_lex_state = 4}, [180] = {.lex_state = 51, .external_lex_state = 2}, - [181] = {.lex_state = 14, .external_lex_state = 2}, - [182] = {.lex_state = 14, .external_lex_state = 2}, - [183] = {.lex_state = 14, .external_lex_state = 2}, + [181] = {.lex_state = 51, .external_lex_state = 2}, + [182] = {.lex_state = 51, .external_lex_state = 4}, + [183] = {.lex_state = 51, .external_lex_state = 2}, [184] = {.lex_state = 51, .external_lex_state = 2}, - [185] = {.lex_state = 51, .external_lex_state = 2}, + [185] = {.lex_state = 14, .external_lex_state = 2}, [186] = {.lex_state = 51, .external_lex_state = 2}, - [187] = {.lex_state = 51, .external_lex_state = 2}, + [187] = {.lex_state = 14, .external_lex_state = 2}, [188] = {.lex_state = 51, .external_lex_state = 2}, [189] = {.lex_state = 51, .external_lex_state = 2}, [190] = {.lex_state = 51, .external_lex_state = 2}, - [191] = {.lex_state = 51, .external_lex_state = 4}, - [192] = {.lex_state = 51, .external_lex_state = 4}, - [193] = {.lex_state = 51, .external_lex_state = 4}, + [191] = {.lex_state = 51, .external_lex_state = 2}, + [192] = {.lex_state = 51, .external_lex_state = 2}, + [193] = {.lex_state = 51, .external_lex_state = 2}, [194] = {.lex_state = 51, .external_lex_state = 2}, - [195] = {.lex_state = 51, .external_lex_state = 4}, + [195] = {.lex_state = 51, .external_lex_state = 2}, [196] = {.lex_state = 51, .external_lex_state = 2}, - [197] = {.lex_state = 51, .external_lex_state = 2}, + [197] = {.lex_state = 51, .external_lex_state = 4}, [198] = {.lex_state = 51, .external_lex_state = 2}, [199] = {.lex_state = 51, .external_lex_state = 2}, [200] = {.lex_state = 51, .external_lex_state = 2}, [201] = {.lex_state = 51, .external_lex_state = 2}, [202] = {.lex_state = 51, .external_lex_state = 2}, - [203] = {.lex_state = 51, .external_lex_state = 2}, + [203] = {.lex_state = 51, .external_lex_state = 4}, [204] = {.lex_state = 51, .external_lex_state = 2}, [205] = {.lex_state = 51, .external_lex_state = 2}, [206] = {.lex_state = 51, .external_lex_state = 2}, @@ -6658,7 +6679,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 51, .external_lex_state = 2}, [209] = {.lex_state = 51, .external_lex_state = 2}, [210] = {.lex_state = 51, .external_lex_state = 2}, - [211] = {.lex_state = 51, .external_lex_state = 2}, + [211] = {.lex_state = 51, .external_lex_state = 4}, [212] = {.lex_state = 51, .external_lex_state = 2}, [213] = {.lex_state = 51, .external_lex_state = 2}, [214] = {.lex_state = 51, .external_lex_state = 2}, @@ -6680,7 +6701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [230] = {.lex_state = 51, .external_lex_state = 2}, [231] = {.lex_state = 51, .external_lex_state = 2}, [232] = {.lex_state = 51, .external_lex_state = 2}, - [233] = {.lex_state = 51, .external_lex_state = 2}, + [233] = {.lex_state = 51, .external_lex_state = 4}, [234] = {.lex_state = 51, .external_lex_state = 2}, [235] = {.lex_state = 51, .external_lex_state = 2}, [236] = {.lex_state = 51, .external_lex_state = 2}, @@ -6714,41 +6735,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 51, .external_lex_state = 2}, [265] = {.lex_state = 51, .external_lex_state = 2}, [266] = {.lex_state = 51, .external_lex_state = 3}, - [267] = {.lex_state = 51, .external_lex_state = 2}, + [267] = {.lex_state = 51, .external_lex_state = 3}, [268] = {.lex_state = 51, .external_lex_state = 2}, [269] = {.lex_state = 51, .external_lex_state = 2}, [270] = {.lex_state = 51, .external_lex_state = 2}, - [271] = {.lex_state = 51, .external_lex_state = 3}, + [271] = {.lex_state = 51, .external_lex_state = 2}, [272] = {.lex_state = 51, .external_lex_state = 2}, - [273] = {.lex_state = 51, .external_lex_state = 3}, + [273] = {.lex_state = 51, .external_lex_state = 2}, [274] = {.lex_state = 51, .external_lex_state = 2}, - [275] = {.lex_state = 51, .external_lex_state = 2}, + [275] = {.lex_state = 51, .external_lex_state = 3}, [276] = {.lex_state = 51, .external_lex_state = 2}, [277] = {.lex_state = 51, .external_lex_state = 2}, [278] = {.lex_state = 51, .external_lex_state = 2}, - [279] = {.lex_state = 51, .external_lex_state = 3}, + [279] = {.lex_state = 51, .external_lex_state = 2}, [280] = {.lex_state = 51, .external_lex_state = 2}, [281] = {.lex_state = 51, .external_lex_state = 2}, [282] = {.lex_state = 51, .external_lex_state = 2}, - [283] = {.lex_state = 51, .external_lex_state = 2}, + [283] = {.lex_state = 51, .external_lex_state = 3}, [284] = {.lex_state = 51, .external_lex_state = 2}, [285] = {.lex_state = 51, .external_lex_state = 2}, [286] = {.lex_state = 51, .external_lex_state = 2}, [287] = {.lex_state = 51, .external_lex_state = 2}, - [288] = {.lex_state = 51, .external_lex_state = 4}, + [288] = {.lex_state = 51, .external_lex_state = 2}, [289] = {.lex_state = 51, .external_lex_state = 2}, - [290] = {.lex_state = 51, .external_lex_state = 4}, + [290] = {.lex_state = 51, .external_lex_state = 2}, [291] = {.lex_state = 51, .external_lex_state = 4}, - [292] = {.lex_state = 51, .external_lex_state = 4}, + [292] = {.lex_state = 51, .external_lex_state = 2}, [293] = {.lex_state = 51, .external_lex_state = 2}, [294] = {.lex_state = 51, .external_lex_state = 2}, [295] = {.lex_state = 51, .external_lex_state = 2}, - [296] = {.lex_state = 51, .external_lex_state = 2}, + [296] = {.lex_state = 51, .external_lex_state = 4}, [297] = {.lex_state = 51, .external_lex_state = 2}, [298] = {.lex_state = 51, .external_lex_state = 2}, [299] = {.lex_state = 51, .external_lex_state = 2}, - [300] = {.lex_state = 51, .external_lex_state = 2}, - [301] = {.lex_state = 51, .external_lex_state = 2}, + [300] = {.lex_state = 51, .external_lex_state = 4}, + [301] = {.lex_state = 51, .external_lex_state = 4}, [302] = {.lex_state = 51, .external_lex_state = 2}, [303] = {.lex_state = 51, .external_lex_state = 2}, [304] = {.lex_state = 51, .external_lex_state = 2}, @@ -6757,34 +6778,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [307] = {.lex_state = 51, .external_lex_state = 2}, [308] = {.lex_state = 51, .external_lex_state = 2}, [309] = {.lex_state = 51, .external_lex_state = 2}, - [310] = {.lex_state = 51, .external_lex_state = 3}, + [310] = {.lex_state = 51, .external_lex_state = 2}, [311] = {.lex_state = 51, .external_lex_state = 2}, [312] = {.lex_state = 51, .external_lex_state = 2}, - [313] = {.lex_state = 51, .external_lex_state = 3}, + [313] = {.lex_state = 16}, [314] = {.lex_state = 51, .external_lex_state = 2}, [315] = {.lex_state = 51, .external_lex_state = 2}, - [316] = {.lex_state = 51, .external_lex_state = 2}, - [317] = {.lex_state = 51, .external_lex_state = 2}, + [316] = {.lex_state = 51, .external_lex_state = 3}, + [317] = {.lex_state = 16}, [318] = {.lex_state = 51, .external_lex_state = 3}, [319] = {.lex_state = 51, .external_lex_state = 2}, - [320] = {.lex_state = 51, .external_lex_state = 2}, - [321] = {.lex_state = 51, .external_lex_state = 2}, + [320] = {.lex_state = 51, .external_lex_state = 3}, + [321] = {.lex_state = 51, .external_lex_state = 3}, [322] = {.lex_state = 51, .external_lex_state = 3}, [323] = {.lex_state = 51, .external_lex_state = 2}, - [324] = {.lex_state = 16}, + [324] = {.lex_state = 51, .external_lex_state = 3}, [325] = {.lex_state = 51, .external_lex_state = 3}, - [326] = {.lex_state = 51, .external_lex_state = 3}, + [326] = {.lex_state = 51, .external_lex_state = 2}, [327] = {.lex_state = 51, .external_lex_state = 2}, - [328] = {.lex_state = 16}, - [329] = {.lex_state = 51, .external_lex_state = 3}, + [328] = {.lex_state = 51, .external_lex_state = 2}, + [329] = {.lex_state = 51, .external_lex_state = 2}, [330] = {.lex_state = 51, .external_lex_state = 3}, - [331] = {.lex_state = 51, .external_lex_state = 2}, - [332] = {.lex_state = 51, .external_lex_state = 3}, + [331] = {.lex_state = 51, .external_lex_state = 3}, + [332] = {.lex_state = 51, .external_lex_state = 2}, [333] = {.lex_state = 51, .external_lex_state = 3}, - [334] = {.lex_state = 51, .external_lex_state = 3}, + [334] = {.lex_state = 51, .external_lex_state = 2}, [335] = {.lex_state = 51, .external_lex_state = 2}, [336] = {.lex_state = 51, .external_lex_state = 2}, - [337] = {.lex_state = 51, .external_lex_state = 2}, + [337] = {.lex_state = 51, .external_lex_state = 3}, [338] = {.lex_state = 51, .external_lex_state = 2}, [339] = {.lex_state = 51, .external_lex_state = 2}, [340] = {.lex_state = 51, .external_lex_state = 2}, @@ -6794,10 +6815,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 51, .external_lex_state = 2}, [345] = {.lex_state = 51, .external_lex_state = 2}, [346] = {.lex_state = 51, .external_lex_state = 2}, - [347] = {.lex_state = 51, .external_lex_state = 2}, + [347] = {.lex_state = 16, .external_lex_state = 6}, [348] = {.lex_state = 51, .external_lex_state = 2}, [349] = {.lex_state = 51, .external_lex_state = 2}, - [350] = {.lex_state = 51, .external_lex_state = 2}, + [350] = {.lex_state = 51, .external_lex_state = 3}, [351] = {.lex_state = 51, .external_lex_state = 2}, [352] = {.lex_state = 51, .external_lex_state = 2}, [353] = {.lex_state = 51, .external_lex_state = 2}, @@ -6821,7 +6842,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [371] = {.lex_state = 51, .external_lex_state = 2}, [372] = {.lex_state = 51, .external_lex_state = 2}, [373] = {.lex_state = 51, .external_lex_state = 2}, - [374] = {.lex_state = 51, .external_lex_state = 3}, + [374] = {.lex_state = 51, .external_lex_state = 2}, [375] = {.lex_state = 51, .external_lex_state = 2}, [376] = {.lex_state = 51, .external_lex_state = 2}, [377] = {.lex_state = 51, .external_lex_state = 2}, @@ -6877,195 +6898,195 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [427] = {.lex_state = 51, .external_lex_state = 2}, [428] = {.lex_state = 51, .external_lex_state = 2}, [429] = {.lex_state = 51, .external_lex_state = 2}, - [430] = {.lex_state = 16, .external_lex_state = 6}, + [430] = {.lex_state = 51, .external_lex_state = 2}, [431] = {.lex_state = 51, .external_lex_state = 2}, [432] = {.lex_state = 51, .external_lex_state = 2}, - [433] = {.lex_state = 16, .external_lex_state = 6}, + [433] = {.lex_state = 51, .external_lex_state = 2}, [434] = {.lex_state = 51, .external_lex_state = 2}, - [435] = {.lex_state = 51, .external_lex_state = 3}, - [436] = {.lex_state = 51, .external_lex_state = 3}, - [437] = {.lex_state = 51, .external_lex_state = 2}, + [435] = {.lex_state = 51, .external_lex_state = 2}, + [436] = {.lex_state = 51, .external_lex_state = 2}, + [437] = {.lex_state = 16, .external_lex_state = 6}, [438] = {.lex_state = 51, .external_lex_state = 2}, - [439] = {.lex_state = 51, .external_lex_state = 2}, + [439] = {.lex_state = 51, .external_lex_state = 3}, [440] = {.lex_state = 51, .external_lex_state = 3}, - [441] = {.lex_state = 51, .external_lex_state = 3}, + [441] = {.lex_state = 51, .external_lex_state = 2}, [442] = {.lex_state = 51, .external_lex_state = 2}, - [443] = {.lex_state = 51, .external_lex_state = 3}, + [443] = {.lex_state = 51, .external_lex_state = 2}, [444] = {.lex_state = 51, .external_lex_state = 3}, [445] = {.lex_state = 51, .external_lex_state = 2}, - [446] = {.lex_state = 51, .external_lex_state = 3}, - [447] = {.lex_state = 51, .external_lex_state = 3}, - [448] = {.lex_state = 51, .external_lex_state = 2}, + [446] = {.lex_state = 51, .external_lex_state = 2}, + [447] = {.lex_state = 51, .external_lex_state = 2}, + [448] = {.lex_state = 51, .external_lex_state = 3}, [449] = {.lex_state = 51, .external_lex_state = 2}, - [450] = {.lex_state = 16, .external_lex_state = 6}, - [451] = {.lex_state = 51, .external_lex_state = 3}, + [450] = {.lex_state = 51, .external_lex_state = 2}, + [451] = {.lex_state = 51, .external_lex_state = 2}, [452] = {.lex_state = 16, .external_lex_state = 7}, - [453] = {.lex_state = 51, .external_lex_state = 3}, - [454] = {.lex_state = 51, .external_lex_state = 2}, - [455] = {.lex_state = 51, .external_lex_state = 3}, - [456] = {.lex_state = 51, .external_lex_state = 2}, + [453] = {.lex_state = 16, .external_lex_state = 6}, + [454] = {.lex_state = 51, .external_lex_state = 3}, + [455] = {.lex_state = 51, .external_lex_state = 2}, + [456] = {.lex_state = 51, .external_lex_state = 3}, [457] = {.lex_state = 51, .external_lex_state = 2}, - [458] = {.lex_state = 51, .external_lex_state = 2}, + [458] = {.lex_state = 51, .external_lex_state = 3}, [459] = {.lex_state = 51, .external_lex_state = 3}, - [460] = {.lex_state = 51, .external_lex_state = 2}, + [460] = {.lex_state = 51, .external_lex_state = 3}, [461] = {.lex_state = 51, .external_lex_state = 2}, - [462] = {.lex_state = 51, .external_lex_state = 2}, + [462] = {.lex_state = 51, .external_lex_state = 3}, [463] = {.lex_state = 51, .external_lex_state = 3}, - [464] = {.lex_state = 51, .external_lex_state = 2}, + [464] = {.lex_state = 51, .external_lex_state = 3}, [465] = {.lex_state = 51, .external_lex_state = 2}, - [466] = {.lex_state = 51, .external_lex_state = 3}, + [466] = {.lex_state = 51, .external_lex_state = 2}, [467] = {.lex_state = 51, .external_lex_state = 2}, - [468] = {.lex_state = 51, .external_lex_state = 3}, - [469] = {.lex_state = 51, .external_lex_state = 3}, - [470] = {.lex_state = 51, .external_lex_state = 3}, + [468] = {.lex_state = 51, .external_lex_state = 2}, + [469] = {.lex_state = 16, .external_lex_state = 6}, + [470] = {.lex_state = 16}, [471] = {.lex_state = 51, .external_lex_state = 2}, - [472] = {.lex_state = 51, .external_lex_state = 3}, + [472] = {.lex_state = 51, .external_lex_state = 2}, [473] = {.lex_state = 51, .external_lex_state = 2}, [474] = {.lex_state = 51, .external_lex_state = 2}, - [475] = {.lex_state = 51, .external_lex_state = 3}, + [475] = {.lex_state = 51, .external_lex_state = 2}, [476] = {.lex_state = 51, .external_lex_state = 2}, - [477] = {.lex_state = 51, .external_lex_state = 2}, + [477] = {.lex_state = 51, .external_lex_state = 3}, [478] = {.lex_state = 51, .external_lex_state = 2}, [479] = {.lex_state = 51, .external_lex_state = 3}, - [480] = {.lex_state = 16, .external_lex_state = 6}, - [481] = {.lex_state = 51, .external_lex_state = 3}, - [482] = {.lex_state = 51, .external_lex_state = 2}, - [483] = {.lex_state = 51, .external_lex_state = 3}, - [484] = {.lex_state = 51, .external_lex_state = 2}, - [485] = {.lex_state = 51, .external_lex_state = 2}, + [480] = {.lex_state = 51, .external_lex_state = 3}, + [481] = {.lex_state = 51, .external_lex_state = 2}, + [482] = {.lex_state = 51, .external_lex_state = 3}, + [483] = {.lex_state = 51, .external_lex_state = 2}, + [484] = {.lex_state = 51, .external_lex_state = 3}, + [485] = {.lex_state = 51, .external_lex_state = 3}, [486] = {.lex_state = 51, .external_lex_state = 3}, - [487] = {.lex_state = 16, .external_lex_state = 6}, + [487] = {.lex_state = 51, .external_lex_state = 3}, [488] = {.lex_state = 51, .external_lex_state = 3}, - [489] = {.lex_state = 51, .external_lex_state = 2}, - [490] = {.lex_state = 16}, + [489] = {.lex_state = 51, .external_lex_state = 3}, + [490] = {.lex_state = 51, .external_lex_state = 2}, [491] = {.lex_state = 51, .external_lex_state = 3}, - [492] = {.lex_state = 51, .external_lex_state = 2}, + [492] = {.lex_state = 16, .external_lex_state = 6}, [493] = {.lex_state = 51, .external_lex_state = 2}, - [494] = {.lex_state = 16}, - [495] = {.lex_state = 51, .external_lex_state = 3}, - [496] = {.lex_state = 16, .external_lex_state = 6}, + [494] = {.lex_state = 16, .external_lex_state = 6}, + [495] = {.lex_state = 51, .external_lex_state = 2}, + [496] = {.lex_state = 51, .external_lex_state = 2}, [497] = {.lex_state = 51, .external_lex_state = 3}, [498] = {.lex_state = 51, .external_lex_state = 2}, [499] = {.lex_state = 16, .external_lex_state = 6}, - [500] = {.lex_state = 51, .external_lex_state = 2}, + [500] = {.lex_state = 51, .external_lex_state = 3}, [501] = {.lex_state = 51, .external_lex_state = 2}, [502] = {.lex_state = 51, .external_lex_state = 3}, [503] = {.lex_state = 16, .external_lex_state = 6}, - [504] = {.lex_state = 51, .external_lex_state = 2}, - [505] = {.lex_state = 51, .external_lex_state = 2}, - [506] = {.lex_state = 51, .external_lex_state = 3}, - [507] = {.lex_state = 51, .external_lex_state = 2}, + [504] = {.lex_state = 51, .external_lex_state = 3}, + [505] = {.lex_state = 51, .external_lex_state = 3}, + [506] = {.lex_state = 51, .external_lex_state = 2}, + [507] = {.lex_state = 51, .external_lex_state = 3}, [508] = {.lex_state = 51, .external_lex_state = 2}, [509] = {.lex_state = 51, .external_lex_state = 2}, [510] = {.lex_state = 51, .external_lex_state = 2}, - [511] = {.lex_state = 51, .external_lex_state = 3}, - [512] = {.lex_state = 51, .external_lex_state = 3}, - [513] = {.lex_state = 51, .external_lex_state = 3}, - [514] = {.lex_state = 51, .external_lex_state = 2}, - [515] = {.lex_state = 51, .external_lex_state = 2}, - [516] = {.lex_state = 51, .external_lex_state = 3}, + [511] = {.lex_state = 51, .external_lex_state = 2}, + [512] = {.lex_state = 51, .external_lex_state = 2}, + [513] = {.lex_state = 51, .external_lex_state = 2}, + [514] = {.lex_state = 51, .external_lex_state = 3}, + [515] = {.lex_state = 16, .external_lex_state = 6}, + [516] = {.lex_state = 51, .external_lex_state = 2}, [517] = {.lex_state = 51, .external_lex_state = 2}, - [518] = {.lex_state = 51, .external_lex_state = 3}, - [519] = {.lex_state = 51, .external_lex_state = 3}, - [520] = {.lex_state = 51, .external_lex_state = 3}, - [521] = {.lex_state = 51, .external_lex_state = 3}, - [522] = {.lex_state = 51, .external_lex_state = 3}, - [523] = {.lex_state = 51, .external_lex_state = 3}, - [524] = {.lex_state = 51, .external_lex_state = 3}, - [525] = {.lex_state = 51, .external_lex_state = 3}, - [526] = {.lex_state = 51, .external_lex_state = 3}, - [527] = {.lex_state = 51, .external_lex_state = 3}, - [528] = {.lex_state = 51, .external_lex_state = 3}, - [529] = {.lex_state = 51, .external_lex_state = 3}, - [530] = {.lex_state = 51, .external_lex_state = 3}, - [531] = {.lex_state = 51, .external_lex_state = 3}, - [532] = {.lex_state = 51, .external_lex_state = 3}, - [533] = {.lex_state = 51, .external_lex_state = 3}, + [518] = {.lex_state = 51, .external_lex_state = 2}, + [519] = {.lex_state = 51, .external_lex_state = 2}, + [520] = {.lex_state = 51, .external_lex_state = 2}, + [521] = {.lex_state = 51, .external_lex_state = 2}, + [522] = {.lex_state = 51, .external_lex_state = 2}, + [523] = {.lex_state = 51, .external_lex_state = 2}, + [524] = {.lex_state = 16, .external_lex_state = 6}, + [525] = {.lex_state = 51, .external_lex_state = 2}, + [526] = {.lex_state = 51, .external_lex_state = 2}, + [527] = {.lex_state = 51, .external_lex_state = 2}, + [528] = {.lex_state = 51, .external_lex_state = 2}, + [529] = {.lex_state = 51, .external_lex_state = 2}, + [530] = {.lex_state = 51, .external_lex_state = 2}, + [531] = {.lex_state = 51, .external_lex_state = 2}, + [532] = {.lex_state = 51, .external_lex_state = 2}, + [533] = {.lex_state = 51, .external_lex_state = 2}, [534] = {.lex_state = 51, .external_lex_state = 3}, - [535] = {.lex_state = 51, .external_lex_state = 3}, - [536] = {.lex_state = 51, .external_lex_state = 3}, - [537] = {.lex_state = 51, .external_lex_state = 3}, - [538] = {.lex_state = 51, .external_lex_state = 3}, - [539] = {.lex_state = 51, .external_lex_state = 3}, + [535] = {.lex_state = 51, .external_lex_state = 2}, + [536] = {.lex_state = 51, .external_lex_state = 2}, + [537] = {.lex_state = 51, .external_lex_state = 2}, + [538] = {.lex_state = 51, .external_lex_state = 2}, + [539] = {.lex_state = 51, .external_lex_state = 2}, [540] = {.lex_state = 51, .external_lex_state = 3}, - [541] = {.lex_state = 51, .external_lex_state = 3}, - [542] = {.lex_state = 51, .external_lex_state = 3}, - [543] = {.lex_state = 51, .external_lex_state = 3}, - [544] = {.lex_state = 51, .external_lex_state = 2}, + [541] = {.lex_state = 51, .external_lex_state = 2}, + [542] = {.lex_state = 51, .external_lex_state = 2}, + [543] = {.lex_state = 51, .external_lex_state = 2}, + [544] = {.lex_state = 51, .external_lex_state = 3}, [545] = {.lex_state = 51, .external_lex_state = 3}, [546] = {.lex_state = 51, .external_lex_state = 3}, - [547] = {.lex_state = 51, .external_lex_state = 3}, + [547] = {.lex_state = 51, .external_lex_state = 2}, [548] = {.lex_state = 51, .external_lex_state = 2}, [549] = {.lex_state = 51, .external_lex_state = 3}, [550] = {.lex_state = 51, .external_lex_state = 2}, [551] = {.lex_state = 51, .external_lex_state = 3}, - [552] = {.lex_state = 51, .external_lex_state = 2}, - [553] = {.lex_state = 51, .external_lex_state = 3}, + [552] = {.lex_state = 51, .external_lex_state = 3}, + [553] = {.lex_state = 51, .external_lex_state = 2}, [554] = {.lex_state = 51, .external_lex_state = 3}, - [555] = {.lex_state = 51, .external_lex_state = 3}, - [556] = {.lex_state = 51, .external_lex_state = 2}, - [557] = {.lex_state = 16, .external_lex_state = 6}, - [558] = {.lex_state = 51, .external_lex_state = 3}, + [555] = {.lex_state = 51, .external_lex_state = 2}, + [556] = {.lex_state = 51, .external_lex_state = 3}, + [557] = {.lex_state = 51, .external_lex_state = 2}, + [558] = {.lex_state = 51, .external_lex_state = 2}, [559] = {.lex_state = 51, .external_lex_state = 3}, [560] = {.lex_state = 51, .external_lex_state = 3}, [561] = {.lex_state = 51, .external_lex_state = 3}, [562] = {.lex_state = 51, .external_lex_state = 3}, - [563] = {.lex_state = 51, .external_lex_state = 2}, - [564] = {.lex_state = 51, .external_lex_state = 3}, + [563] = {.lex_state = 51, .external_lex_state = 3}, + [564] = {.lex_state = 51, .external_lex_state = 2}, [565] = {.lex_state = 51, .external_lex_state = 3}, [566] = {.lex_state = 51, .external_lex_state = 2}, - [567] = {.lex_state = 51, .external_lex_state = 2}, - [568] = {.lex_state = 51, .external_lex_state = 2}, - [569] = {.lex_state = 51, .external_lex_state = 2}, - [570] = {.lex_state = 51, .external_lex_state = 2}, - [571] = {.lex_state = 16, .external_lex_state = 6}, - [572] = {.lex_state = 51, .external_lex_state = 2}, - [573] = {.lex_state = 51, .external_lex_state = 2}, - [574] = {.lex_state = 51, .external_lex_state = 2}, - [575] = {.lex_state = 51, .external_lex_state = 2}, - [576] = {.lex_state = 51, .external_lex_state = 2}, - [577] = {.lex_state = 51, .external_lex_state = 2}, - [578] = {.lex_state = 51, .external_lex_state = 2}, - [579] = {.lex_state = 51, .external_lex_state = 2}, - [580] = {.lex_state = 51, .external_lex_state = 2}, - [581] = {.lex_state = 51, .external_lex_state = 2}, - [582] = {.lex_state = 16, .external_lex_state = 6}, - [583] = {.lex_state = 51, .external_lex_state = 2}, - [584] = {.lex_state = 51, .external_lex_state = 2}, - [585] = {.lex_state = 16}, - [586] = {.lex_state = 51, .external_lex_state = 2}, - [587] = {.lex_state = 51, .external_lex_state = 2}, - [588] = {.lex_state = 51, .external_lex_state = 2}, + [567] = {.lex_state = 51, .external_lex_state = 3}, + [568] = {.lex_state = 51, .external_lex_state = 3}, + [569] = {.lex_state = 51, .external_lex_state = 3}, + [570] = {.lex_state = 51, .external_lex_state = 3}, + [571] = {.lex_state = 51, .external_lex_state = 3}, + [572] = {.lex_state = 51, .external_lex_state = 3}, + [573] = {.lex_state = 51, .external_lex_state = 3}, + [574] = {.lex_state = 51, .external_lex_state = 3}, + [575] = {.lex_state = 51, .external_lex_state = 3}, + [576] = {.lex_state = 51, .external_lex_state = 3}, + [577] = {.lex_state = 51, .external_lex_state = 3}, + [578] = {.lex_state = 51, .external_lex_state = 3}, + [579] = {.lex_state = 51, .external_lex_state = 3}, + [580] = {.lex_state = 51, .external_lex_state = 3}, + [581] = {.lex_state = 51, .external_lex_state = 3}, + [582] = {.lex_state = 51, .external_lex_state = 2}, + [583] = {.lex_state = 51, .external_lex_state = 3}, + [584] = {.lex_state = 51, .external_lex_state = 3}, + [585] = {.lex_state = 51, .external_lex_state = 3}, + [586] = {.lex_state = 51, .external_lex_state = 3}, + [587] = {.lex_state = 51, .external_lex_state = 3}, + [588] = {.lex_state = 51, .external_lex_state = 3}, [589] = {.lex_state = 51, .external_lex_state = 2}, - [590] = {.lex_state = 51, .external_lex_state = 2}, - [591] = {.lex_state = 51, .external_lex_state = 2}, - [592] = {.lex_state = 51, .external_lex_state = 2}, + [590] = {.lex_state = 51, .external_lex_state = 3}, + [591] = {.lex_state = 51, .external_lex_state = 3}, + [592] = {.lex_state = 51, .external_lex_state = 3}, [593] = {.lex_state = 51, .external_lex_state = 2}, [594] = {.lex_state = 51, .external_lex_state = 2}, - [595] = {.lex_state = 51, .external_lex_state = 2}, - [596] = {.lex_state = 51, .external_lex_state = 2}, - [597] = {.lex_state = 51, .external_lex_state = 2}, - [598] = {.lex_state = 51, .external_lex_state = 2}, - [599] = {.lex_state = 51, .external_lex_state = 2}, + [595] = {.lex_state = 51, .external_lex_state = 3}, + [596] = {.lex_state = 51, .external_lex_state = 3}, + [597] = {.lex_state = 51, .external_lex_state = 3}, + [598] = {.lex_state = 51, .external_lex_state = 3}, + [599] = {.lex_state = 51, .external_lex_state = 3}, [600] = {.lex_state = 51, .external_lex_state = 2}, [601] = {.lex_state = 51, .external_lex_state = 2}, - [602] = {.lex_state = 51, .external_lex_state = 2}, - [603] = {.lex_state = 51, .external_lex_state = 2}, + [602] = {.lex_state = 51, .external_lex_state = 3}, + [603] = {.lex_state = 51, .external_lex_state = 3}, [604] = {.lex_state = 51, .external_lex_state = 2}, [605] = {.lex_state = 51, .external_lex_state = 2}, [606] = {.lex_state = 51, .external_lex_state = 2}, [607] = {.lex_state = 51, .external_lex_state = 2}, [608] = {.lex_state = 51, .external_lex_state = 2}, [609] = {.lex_state = 51, .external_lex_state = 2}, - [610] = {.lex_state = 51, .external_lex_state = 3}, - [611] = {.lex_state = 51, .external_lex_state = 3}, - [612] = {.lex_state = 51, .external_lex_state = 3}, + [610] = {.lex_state = 51, .external_lex_state = 2}, + [611] = {.lex_state = 51, .external_lex_state = 2}, + [612] = {.lex_state = 51, .external_lex_state = 2}, [613] = {.lex_state = 51, .external_lex_state = 2}, - [614] = {.lex_state = 51, .external_lex_state = 3}, + [614] = {.lex_state = 16, .external_lex_state = 6}, [615] = {.lex_state = 51, .external_lex_state = 2}, - [616] = {.lex_state = 51, .external_lex_state = 2}, - [617] = {.lex_state = 51, .external_lex_state = 2}, - [618] = {.lex_state = 51, .external_lex_state = 2}, + [616] = {.lex_state = 51, .external_lex_state = 3}, + [617] = {.lex_state = 16}, + [618] = {.lex_state = 16}, [619] = {.lex_state = 51, .external_lex_state = 2}, [620] = {.lex_state = 51, .external_lex_state = 2}, [621] = {.lex_state = 51, .external_lex_state = 2}, @@ -7074,7 +7095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [624] = {.lex_state = 51, .external_lex_state = 2}, [625] = {.lex_state = 51, .external_lex_state = 2}, [626] = {.lex_state = 51, .external_lex_state = 2}, - [627] = {.lex_state = 51, .external_lex_state = 2}, + [627] = {.lex_state = 16, .external_lex_state = 8}, [628] = {.lex_state = 51, .external_lex_state = 2}, [629] = {.lex_state = 51, .external_lex_state = 2}, [630] = {.lex_state = 51, .external_lex_state = 2}, @@ -7092,7 +7113,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 51, .external_lex_state = 2}, [643] = {.lex_state = 51, .external_lex_state = 2}, [644] = {.lex_state = 51, .external_lex_state = 2}, - [645] = {.lex_state = 16, .external_lex_state = 8}, + [645] = {.lex_state = 51, .external_lex_state = 2}, [646] = {.lex_state = 51, .external_lex_state = 2}, [647] = {.lex_state = 51, .external_lex_state = 2}, [648] = {.lex_state = 51, .external_lex_state = 2}, @@ -7105,7 +7126,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [655] = {.lex_state = 51, .external_lex_state = 2}, [656] = {.lex_state = 51, .external_lex_state = 2}, [657] = {.lex_state = 51, .external_lex_state = 2}, - [658] = {.lex_state = 16, .external_lex_state = 9}, + [658] = {.lex_state = 51, .external_lex_state = 2}, [659] = {.lex_state = 51, .external_lex_state = 2}, [660] = {.lex_state = 51, .external_lex_state = 2}, [661] = {.lex_state = 51, .external_lex_state = 2}, @@ -7122,8 +7143,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 51, .external_lex_state = 2}, [673] = {.lex_state = 51, .external_lex_state = 2}, [674] = {.lex_state = 51, .external_lex_state = 2}, - [675] = {.lex_state = 16, .external_lex_state = 8}, - [676] = {.lex_state = 16, .external_lex_state = 9}, + [675] = {.lex_state = 51, .external_lex_state = 2}, + [676] = {.lex_state = 51, .external_lex_state = 2}, [677] = {.lex_state = 51, .external_lex_state = 2}, [678] = {.lex_state = 51, .external_lex_state = 2}, [679] = {.lex_state = 51, .external_lex_state = 2}, @@ -7132,25 +7153,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 51, .external_lex_state = 2}, [683] = {.lex_state = 51, .external_lex_state = 2}, [684] = {.lex_state = 51, .external_lex_state = 2}, - [685] = {.lex_state = 51, .external_lex_state = 2}, + [685] = {.lex_state = 16, .external_lex_state = 9}, [686] = {.lex_state = 51, .external_lex_state = 2}, [687] = {.lex_state = 51, .external_lex_state = 2}, [688] = {.lex_state = 51, .external_lex_state = 2}, [689] = {.lex_state = 51, .external_lex_state = 2}, - [690] = {.lex_state = 51, .external_lex_state = 2}, + [690] = {.lex_state = 16, .external_lex_state = 9}, [691] = {.lex_state = 51, .external_lex_state = 2}, - [692] = {.lex_state = 16, .external_lex_state = 8}, - [693] = {.lex_state = 16, .external_lex_state = 9}, - [694] = {.lex_state = 51, .external_lex_state = 2}, + [692] = {.lex_state = 51, .external_lex_state = 2}, + [693] = {.lex_state = 16, .external_lex_state = 8}, + [694] = {.lex_state = 16, .external_lex_state = 9}, [695] = {.lex_state = 51, .external_lex_state = 2}, - [696] = {.lex_state = 16, .external_lex_state = 8}, - [697] = {.lex_state = 16, .external_lex_state = 8}, - [698] = {.lex_state = 16, .external_lex_state = 9}, - [699] = {.lex_state = 16, .external_lex_state = 9}, - [700] = {.lex_state = 15}, - [701] = {.lex_state = 16}, - [702] = {.lex_state = 16}, - [703] = {.lex_state = 16}, + [696] = {.lex_state = 51, .external_lex_state = 2}, + [697] = {.lex_state = 51, .external_lex_state = 2}, + [698] = {.lex_state = 16, .external_lex_state = 8}, + [699] = {.lex_state = 51, .external_lex_state = 2}, + [700] = {.lex_state = 16, .external_lex_state = 8}, + [701] = {.lex_state = 16, .external_lex_state = 8}, + [702] = {.lex_state = 16, .external_lex_state = 9}, + [703] = {.lex_state = 16, .external_lex_state = 9}, [704] = {.lex_state = 16}, [705] = {.lex_state = 16}, [706] = {.lex_state = 16}, @@ -7167,7 +7188,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 16}, [718] = {.lex_state = 16}, [719] = {.lex_state = 16}, - [720] = {.lex_state = 15}, + [720] = {.lex_state = 16}, [721] = {.lex_state = 16}, [722] = {.lex_state = 16}, [723] = {.lex_state = 16}, @@ -7183,9 +7204,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 16}, [734] = {.lex_state = 16}, [735] = {.lex_state = 16}, - [736] = {.lex_state = 16}, - [737] = {.lex_state = 16}, - [738] = {.lex_state = 16, .external_lex_state = 9}, + [736] = {.lex_state = 15}, + [737] = {.lex_state = 15}, + [738] = {.lex_state = 16}, [739] = {.lex_state = 16}, [740] = {.lex_state = 16}, [741] = {.lex_state = 16}, @@ -7196,209 +7217,209 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 16}, [747] = {.lex_state = 16}, [748] = {.lex_state = 16}, - [749] = {.lex_state = 16}, - [750] = {.lex_state = 16}, + [749] = {.lex_state = 16, .external_lex_state = 9}, + [750] = {.lex_state = 16, .external_lex_state = 8}, [751] = {.lex_state = 16}, - [752] = {.lex_state = 16, .external_lex_state = 8}, - [753] = {.lex_state = 16}, - [754] = {.lex_state = 16}, + [752] = {.lex_state = 16}, + [753] = {.lex_state = 16, .external_lex_state = 9}, + [754] = {.lex_state = 16, .external_lex_state = 8}, [755] = {.lex_state = 16}, [756] = {.lex_state = 16}, [757] = {.lex_state = 16}, [758] = {.lex_state = 16}, - [759] = {.lex_state = 16, .external_lex_state = 8}, - [760] = {.lex_state = 16, .external_lex_state = 9}, + [759] = {.lex_state = 16}, + [760] = {.lex_state = 16}, [761] = {.lex_state = 16}, [762] = {.lex_state = 16}, - [763] = {.lex_state = 15}, + [763] = {.lex_state = 16}, [764] = {.lex_state = 16}, - [765] = {.lex_state = 16, .external_lex_state = 6}, - [766] = {.lex_state = 15, .external_lex_state = 8}, - [767] = {.lex_state = 15, .external_lex_state = 8}, + [765] = {.lex_state = 16}, + [766] = {.lex_state = 16}, + [767] = {.lex_state = 16}, [768] = {.lex_state = 15, .external_lex_state = 9}, - [769] = {.lex_state = 16, .external_lex_state = 10}, - [770] = {.lex_state = 15, .external_lex_state = 8}, - [771] = {.lex_state = 15, .external_lex_state = 9}, - [772] = {.lex_state = 16}, - [773] = {.lex_state = 16}, - [774] = {.lex_state = 16, .external_lex_state = 10}, - [775] = {.lex_state = 16, .external_lex_state = 7}, - [776] = {.lex_state = 15, .external_lex_state = 9}, - [777] = {.lex_state = 16}, - [778] = {.lex_state = 16, .external_lex_state = 10}, + [769] = {.lex_state = 15, .external_lex_state = 8}, + [770] = {.lex_state = 16, .external_lex_state = 7}, + [771] = {.lex_state = 16, .external_lex_state = 10}, + [772] = {.lex_state = 16, .external_lex_state = 10}, + [773] = {.lex_state = 16, .external_lex_state = 6}, + [774] = {.lex_state = 16}, + [775] = {.lex_state = 16}, + [776] = {.lex_state = 16, .external_lex_state = 7}, + [777] = {.lex_state = 16, .external_lex_state = 10}, + [778] = {.lex_state = 16}, [779] = {.lex_state = 16, .external_lex_state = 7}, - [780] = {.lex_state = 16}, - [781] = {.lex_state = 16}, - [782] = {.lex_state = 16, .external_lex_state = 7}, + [780] = {.lex_state = 15}, + [781] = {.lex_state = 15, .external_lex_state = 9}, + [782] = {.lex_state = 15, .external_lex_state = 8}, [783] = {.lex_state = 16}, - [784] = {.lex_state = 16}, - [785] = {.lex_state = 16, .external_lex_state = 6}, - [786] = {.lex_state = 16, .external_lex_state = 6}, - [787] = {.lex_state = 16, .external_lex_state = 8}, - [788] = {.lex_state = 16, .external_lex_state = 9}, - [789] = {.lex_state = 16, .external_lex_state = 6}, - [790] = {.lex_state = 16, .external_lex_state = 6}, - [791] = {.lex_state = 16, .external_lex_state = 6}, - [792] = {.lex_state = 16}, + [784] = {.lex_state = 15, .external_lex_state = 9}, + [785] = {.lex_state = 15, .external_lex_state = 8}, + [786] = {.lex_state = 16}, + [787] = {.lex_state = 16}, + [788] = {.lex_state = 16, .external_lex_state = 6}, + [789] = {.lex_state = 16}, + [790] = {.lex_state = 16, .external_lex_state = 9}, + [791] = {.lex_state = 16, .external_lex_state = 8}, + [792] = {.lex_state = 16, .external_lex_state = 9}, [793] = {.lex_state = 16, .external_lex_state = 8}, [794] = {.lex_state = 16, .external_lex_state = 9}, [795] = {.lex_state = 16, .external_lex_state = 8}, - [796] = {.lex_state = 16, .external_lex_state = 9}, + [796] = {.lex_state = 16, .external_lex_state = 6}, [797] = {.lex_state = 16, .external_lex_state = 6}, [798] = {.lex_state = 16, .external_lex_state = 6}, - [799] = {.lex_state = 15}, - [800] = {.lex_state = 15}, - [801] = {.lex_state = 15}, - [802] = {.lex_state = 15}, - [803] = {.lex_state = 16}, + [799] = {.lex_state = 16, .external_lex_state = 6}, + [800] = {.lex_state = 16, .external_lex_state = 6}, + [801] = {.lex_state = 16, .external_lex_state = 6}, + [802] = {.lex_state = 16, .external_lex_state = 6}, + [803] = {.lex_state = 16, .external_lex_state = 6}, [804] = {.lex_state = 15}, - [805] = {.lex_state = 16}, - [806] = {.lex_state = 16}, - [807] = {.lex_state = 16}, + [805] = {.lex_state = 15}, + [806] = {.lex_state = 16, .external_lex_state = 6}, + [807] = {.lex_state = 16, .external_lex_state = 6}, [808] = {.lex_state = 16}, [809] = {.lex_state = 15}, - [810] = {.lex_state = 16}, - [811] = {.lex_state = 16}, + [810] = {.lex_state = 15}, + [811] = {.lex_state = 15}, [812] = {.lex_state = 15}, - [813] = {.lex_state = 16}, - [814] = {.lex_state = 16}, + [813] = {.lex_state = 15}, + [814] = {.lex_state = 15}, [815] = {.lex_state = 15}, [816] = {.lex_state = 15}, - [817] = {.lex_state = 16, .external_lex_state = 6}, + [817] = {.lex_state = 15}, [818] = {.lex_state = 16, .external_lex_state = 6}, - [819] = {.lex_state = 15}, - [820] = {.lex_state = 15}, - [821] = {.lex_state = 16, .external_lex_state = 6}, - [822] = {.lex_state = 15}, - [823] = {.lex_state = 16, .external_lex_state = 6}, - [824] = {.lex_state = 16, .external_lex_state = 6}, + [819] = {.lex_state = 16}, + [820] = {.lex_state = 16}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 16}, + [823] = {.lex_state = 16}, + [824] = {.lex_state = 16}, [825] = {.lex_state = 16}, [826] = {.lex_state = 16}, - [827] = {.lex_state = 51, .external_lex_state = 2}, + [827] = {.lex_state = 16}, [828] = {.lex_state = 16}, [829] = {.lex_state = 16}, - [830] = {.lex_state = 51, .external_lex_state = 2}, - [831] = {.lex_state = 16}, - [832] = {.lex_state = 16}, + [830] = {.lex_state = 15}, + [831] = {.lex_state = 16, .external_lex_state = 6}, + [832] = {.lex_state = 15}, [833] = {.lex_state = 16}, - [834] = {.lex_state = 16}, - [835] = {.lex_state = 16}, - [836] = {.lex_state = 16, .external_lex_state = 7}, - [837] = {.lex_state = 15, .external_lex_state = 9}, + [834] = {.lex_state = 15, .external_lex_state = 8}, + [835] = {.lex_state = 16, .external_lex_state = 6}, + [836] = {.lex_state = 15}, + [837] = {.lex_state = 16}, [838] = {.lex_state = 16}, [839] = {.lex_state = 16}, - [840] = {.lex_state = 16}, - [841] = {.lex_state = 16}, + [840] = {.lex_state = 15, .external_lex_state = 8}, + [841] = {.lex_state = 51, .external_lex_state = 2}, [842] = {.lex_state = 16}, - [843] = {.lex_state = 15, .external_lex_state = 8}, - [844] = {.lex_state = 16, .external_lex_state = 6}, + [843] = {.lex_state = 16, .external_lex_state = 7}, + [844] = {.lex_state = 16}, [845] = {.lex_state = 16}, - [846] = {.lex_state = 16}, - [847] = {.lex_state = 51, .external_lex_state = 2}, - [848] = {.lex_state = 16}, + [846] = {.lex_state = 15, .external_lex_state = 9}, + [847] = {.lex_state = 16, .external_lex_state = 10}, + [848] = {.lex_state = 15, .external_lex_state = 9}, [849] = {.lex_state = 16}, [850] = {.lex_state = 16}, - [851] = {.lex_state = 16, .external_lex_state = 6}, + [851] = {.lex_state = 16}, [852] = {.lex_state = 16, .external_lex_state = 7}, - [853] = {.lex_state = 15, .external_lex_state = 8}, + [853] = {.lex_state = 16, .external_lex_state = 10}, [854] = {.lex_state = 16}, [855] = {.lex_state = 16}, [856] = {.lex_state = 16}, - [857] = {.lex_state = 16, .external_lex_state = 10}, - [858] = {.lex_state = 51, .external_lex_state = 2}, + [857] = {.lex_state = 16}, + [858] = {.lex_state = 16}, [859] = {.lex_state = 16}, - [860] = {.lex_state = 16, .external_lex_state = 10}, - [861] = {.lex_state = 16}, + [860] = {.lex_state = 16}, + [861] = {.lex_state = 51, .external_lex_state = 2}, [862] = {.lex_state = 16}, - [863] = {.lex_state = 15}, - [864] = {.lex_state = 15, .external_lex_state = 9}, - [865] = {.lex_state = 15}, + [863] = {.lex_state = 16}, + [864] = {.lex_state = 16}, + [865] = {.lex_state = 16}, [866] = {.lex_state = 16}, - [867] = {.lex_state = 16, .external_lex_state = 6}, - [868] = {.lex_state = 16, .external_lex_state = 6}, - [869] = {.lex_state = 15}, - [870] = {.lex_state = 15}, + [867] = {.lex_state = 16}, + [868] = {.lex_state = 16}, + [869] = {.lex_state = 51, .external_lex_state = 2}, + [870] = {.lex_state = 51, .external_lex_state = 2}, [871] = {.lex_state = 16}, [872] = {.lex_state = 16}, - [873] = {.lex_state = 15}, - [874] = {.lex_state = 51, .external_lex_state = 2}, - [875] = {.lex_state = 51, .external_lex_state = 2}, + [873] = {.lex_state = 16, .external_lex_state = 6}, + [874] = {.lex_state = 15}, + [875] = {.lex_state = 15}, [876] = {.lex_state = 15}, - [877] = {.lex_state = 16}, + [877] = {.lex_state = 16, .external_lex_state = 6}, [878] = {.lex_state = 15}, - [879] = {.lex_state = 16}, + [879] = {.lex_state = 15}, [880] = {.lex_state = 15}, - [881] = {.lex_state = 16, .external_lex_state = 6}, - [882] = {.lex_state = 16, .external_lex_state = 6}, - [883] = {.lex_state = 16}, - [884] = {.lex_state = 16, .external_lex_state = 6}, - [885] = {.lex_state = 16, .external_lex_state = 6}, + [881] = {.lex_state = 15}, + [882] = {.lex_state = 15}, + [883] = {.lex_state = 15}, + [884] = {.lex_state = 15}, + [885] = {.lex_state = 15}, [886] = {.lex_state = 15}, - [887] = {.lex_state = 16, .external_lex_state = 6}, - [888] = {.lex_state = 16, .external_lex_state = 6}, - [889] = {.lex_state = 51, .external_lex_state = 2}, - [890] = {.lex_state = 16, .external_lex_state = 6}, + [887] = {.lex_state = 15}, + [888] = {.lex_state = 15}, + [889] = {.lex_state = 15}, + [890] = {.lex_state = 15}, [891] = {.lex_state = 15}, - [892] = {.lex_state = 16, .external_lex_state = 6}, - [893] = {.lex_state = 16, .external_lex_state = 6}, + [892] = {.lex_state = 16}, + [893] = {.lex_state = 16}, [894] = {.lex_state = 15}, [895] = {.lex_state = 16, .external_lex_state = 6}, - [896] = {.lex_state = 16, .external_lex_state = 6}, - [897] = {.lex_state = 16, .external_lex_state = 6}, + [896] = {.lex_state = 51, .external_lex_state = 2}, + [897] = {.lex_state = 51, .external_lex_state = 2}, [898] = {.lex_state = 16, .external_lex_state = 6}, - [899] = {.lex_state = 51, .external_lex_state = 2}, + [899] = {.lex_state = 15}, [900] = {.lex_state = 16, .external_lex_state = 6}, - [901] = {.lex_state = 16, .external_lex_state = 6}, - [902] = {.lex_state = 16, .external_lex_state = 6}, - [903] = {.lex_state = 15}, + [901] = {.lex_state = 15}, + [902] = {.lex_state = 15}, + [903] = {.lex_state = 16, .external_lex_state = 6}, [904] = {.lex_state = 16, .external_lex_state = 6}, [905] = {.lex_state = 16, .external_lex_state = 6}, [906] = {.lex_state = 15}, - [907] = {.lex_state = 15}, - [908] = {.lex_state = 15}, - [909] = {.lex_state = 16}, - [910] = {.lex_state = 16}, - [911] = {.lex_state = 15}, + [907] = {.lex_state = 16}, + [908] = {.lex_state = 16, .external_lex_state = 6}, + [909] = {.lex_state = 16, .external_lex_state = 6}, + [910] = {.lex_state = 16, .external_lex_state = 6}, + [911] = {.lex_state = 16, .external_lex_state = 6}, [912] = {.lex_state = 15}, - [913] = {.lex_state = 15}, - [914] = {.lex_state = 15}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, [915] = {.lex_state = 16, .external_lex_state = 6}, - [916] = {.lex_state = 15}, - [917] = {.lex_state = 15}, - [918] = {.lex_state = 16, .external_lex_state = 6}, + [916] = {.lex_state = 16, .external_lex_state = 6}, + [917] = {.lex_state = 16}, + [918] = {.lex_state = 15}, [919] = {.lex_state = 16, .external_lex_state = 6}, [920] = {.lex_state = 16, .external_lex_state = 6}, [921] = {.lex_state = 16, .external_lex_state = 6}, [922] = {.lex_state = 16, .external_lex_state = 6}, - [923] = {.lex_state = 51, .external_lex_state = 2}, - [924] = {.lex_state = 51, .external_lex_state = 2}, - [925] = {.lex_state = 16, .external_lex_state = 6}, + [923] = {.lex_state = 16, .external_lex_state = 6}, + [924] = {.lex_state = 16}, + [925] = {.lex_state = 15}, [926] = {.lex_state = 16, .external_lex_state = 6}, - [927] = {.lex_state = 15}, + [927] = {.lex_state = 16, .external_lex_state = 6}, [928] = {.lex_state = 16, .external_lex_state = 6}, - [929] = {.lex_state = 15}, - [930] = {.lex_state = 15}, - [931] = {.lex_state = 15}, - [932] = {.lex_state = 15}, + [929] = {.lex_state = 16, .external_lex_state = 6}, + [930] = {.lex_state = 16, .external_lex_state = 6}, + [931] = {.lex_state = 51, .external_lex_state = 2}, + [932] = {.lex_state = 16, .external_lex_state = 6}, [933] = {.lex_state = 15}, - [934] = {.lex_state = 15}, - [935] = {.lex_state = 15}, + [934] = {.lex_state = 51, .external_lex_state = 2}, + [935] = {.lex_state = 51, .external_lex_state = 2}, [936] = {.lex_state = 16, .external_lex_state = 6}, - [937] = {.lex_state = 16, .external_lex_state = 6}, + [937] = {.lex_state = 15}, [938] = {.lex_state = 15}, - [939] = {.lex_state = 16, .external_lex_state = 6}, + [939] = {.lex_state = 51, .external_lex_state = 2}, [940] = {.lex_state = 15}, [941] = {.lex_state = 16, .external_lex_state = 6}, - [942] = {.lex_state = 15}, - [943] = {.lex_state = 15}, + [942] = {.lex_state = 16, .external_lex_state = 6}, + [943] = {.lex_state = 16, .external_lex_state = 6}, [944] = {.lex_state = 15}, - [945] = {.lex_state = 15}, - [946] = {.lex_state = 16}, - [947] = {.lex_state = 16}, - [948] = {.lex_state = 16}, - [949] = {.lex_state = 16}, - [950] = {.lex_state = 16}, - [951] = {.lex_state = 16}, + [945] = {.lex_state = 16, .external_lex_state = 6}, + [946] = {.lex_state = 15}, + [947] = {.lex_state = 16, .external_lex_state = 6}, + [948] = {.lex_state = 15}, + [949] = {.lex_state = 15}, + [950] = {.lex_state = 16, .external_lex_state = 6}, + [951] = {.lex_state = 16, .external_lex_state = 6}, [952] = {.lex_state = 16}, [953] = {.lex_state = 16}, [954] = {.lex_state = 16}, @@ -7416,123 +7437,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [966] = {.lex_state = 16}, [967] = {.lex_state = 16}, [968] = {.lex_state = 16}, - [969] = {.lex_state = 51, .external_lex_state = 2}, + [969] = {.lex_state = 16}, [970] = {.lex_state = 16}, [971] = {.lex_state = 16}, - [972] = {.lex_state = 51, .external_lex_state = 2}, - [973] = {.lex_state = 51, .external_lex_state = 2}, + [972] = {.lex_state = 16}, + [973] = {.lex_state = 16}, [974] = {.lex_state = 16}, [975] = {.lex_state = 16}, [976] = {.lex_state = 16}, [977] = {.lex_state = 16}, [978] = {.lex_state = 16}, [979] = {.lex_state = 16}, - [980] = {.lex_state = 51, .external_lex_state = 2}, - [981] = {.lex_state = 16}, - [982] = {.lex_state = 16}, - [983] = {.lex_state = 16}, + [980] = {.lex_state = 16}, + [981] = {.lex_state = 51, .external_lex_state = 2}, + [982] = {.lex_state = 51, .external_lex_state = 2}, + [983] = {.lex_state = 51, .external_lex_state = 2}, [984] = {.lex_state = 16}, - [985] = {.lex_state = 51, .external_lex_state = 2}, - [986] = {.lex_state = 51, .external_lex_state = 2}, + [985] = {.lex_state = 16}, + [986] = {.lex_state = 16}, [987] = {.lex_state = 51, .external_lex_state = 2}, - [988] = {.lex_state = 51, .external_lex_state = 2}, - [989] = {.lex_state = 51, .external_lex_state = 2}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 51}, - [993] = {.lex_state = 51}, - [994] = {.lex_state = 51}, + [988] = {.lex_state = 16}, + [989] = {.lex_state = 16}, + [990] = {.lex_state = 16}, + [991] = {.lex_state = 51, .external_lex_state = 2}, + [992] = {.lex_state = 51, .external_lex_state = 2}, + [993] = {.lex_state = 51, .external_lex_state = 2}, + [994] = {.lex_state = 51, .external_lex_state = 2}, [995] = {.lex_state = 51, .external_lex_state = 2}, - [996] = {.lex_state = 51}, - [997] = {.lex_state = 16}, - [998] = {.lex_state = 51}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 51}, + [998] = {.lex_state = 0}, [999] = {.lex_state = 51}, - [1000] = {.lex_state = 0, .external_lex_state = 6}, - [1001] = {.lex_state = 51}, + [1000] = {.lex_state = 51}, + [1001] = {.lex_state = 0, .external_lex_state = 6}, [1002] = {.lex_state = 51}, [1003] = {.lex_state = 14}, - [1004] = {.lex_state = 16}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 51}, + [1004] = {.lex_state = 14}, + [1005] = {.lex_state = 51}, + [1006] = {.lex_state = 51, .external_lex_state = 2}, [1007] = {.lex_state = 51, .external_lex_state = 2}, [1008] = {.lex_state = 0, .external_lex_state = 6}, - [1009] = {.lex_state = 51, .external_lex_state = 2}, - [1010] = {.lex_state = 51}, - [1011] = {.lex_state = 51}, + [1009] = {.lex_state = 51}, + [1010] = {.lex_state = 51, .external_lex_state = 2}, + [1011] = {.lex_state = 16}, [1012] = {.lex_state = 51}, [1013] = {.lex_state = 16}, [1014] = {.lex_state = 51}, [1015] = {.lex_state = 51}, [1016] = {.lex_state = 51}, - [1017] = {.lex_state = 51}, + [1017] = {.lex_state = 16}, [1018] = {.lex_state = 51}, [1019] = {.lex_state = 51}, [1020] = {.lex_state = 51}, [1021] = {.lex_state = 51}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 51, .external_lex_state = 2}, - [1024] = {.lex_state = 0}, + [1022] = {.lex_state = 51}, + [1023] = {.lex_state = 51}, + [1024] = {.lex_state = 51}, [1025] = {.lex_state = 51}, [1026] = {.lex_state = 51}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 51}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 51}, + [1027] = {.lex_state = 51}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 51, .external_lex_state = 2}, + [1030] = {.lex_state = 51}, + [1031] = {.lex_state = 0}, [1032] = {.lex_state = 51}, - [1033] = {.lex_state = 16}, - [1034] = {.lex_state = 18, .external_lex_state = 11}, - [1035] = {.lex_state = 51, .external_lex_state = 9}, - [1036] = {.lex_state = 16}, - [1037] = {.lex_state = 18, .external_lex_state = 11}, - [1038] = {.lex_state = 18, .external_lex_state = 11}, - [1039] = {.lex_state = 18, .external_lex_state = 11}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 51}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 51}, + [1038] = {.lex_state = 51}, + [1039] = {.lex_state = 16}, [1040] = {.lex_state = 18, .external_lex_state = 11}, [1041] = {.lex_state = 51}, - [1042] = {.lex_state = 18, .external_lex_state = 11}, - [1043] = {.lex_state = 18, .external_lex_state = 11}, + [1042] = {.lex_state = 16}, + [1043] = {.lex_state = 51, .external_lex_state = 8}, [1044] = {.lex_state = 18, .external_lex_state = 11}, [1045] = {.lex_state = 18, .external_lex_state = 11}, [1046] = {.lex_state = 18, .external_lex_state = 11}, - [1047] = {.lex_state = 18, .external_lex_state = 11}, - [1048] = {.lex_state = 18, .external_lex_state = 11}, + [1047] = {.lex_state = 51}, + [1048] = {.lex_state = 0}, [1049] = {.lex_state = 18, .external_lex_state = 11}, [1050] = {.lex_state = 18, .external_lex_state = 11}, [1051] = {.lex_state = 18, .external_lex_state = 11}, [1052] = {.lex_state = 18, .external_lex_state = 11}, - [1053] = {.lex_state = 18, .external_lex_state = 11}, + [1053] = {.lex_state = 16}, [1054] = {.lex_state = 18, .external_lex_state = 11}, - [1055] = {.lex_state = 51}, - [1056] = {.lex_state = 16}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 51}, - [1059] = {.lex_state = 51}, - [1060] = {.lex_state = 16}, - [1061] = {.lex_state = 51, .external_lex_state = 8}, + [1055] = {.lex_state = 18, .external_lex_state = 11}, + [1056] = {.lex_state = 18, .external_lex_state = 11}, + [1057] = {.lex_state = 18, .external_lex_state = 11}, + [1058] = {.lex_state = 18, .external_lex_state = 11}, + [1059] = {.lex_state = 18, .external_lex_state = 11}, + [1060] = {.lex_state = 18, .external_lex_state = 11}, + [1061] = {.lex_state = 18, .external_lex_state = 11}, [1062] = {.lex_state = 18, .external_lex_state = 11}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 51}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 51}, + [1063] = {.lex_state = 51}, + [1064] = {.lex_state = 16}, + [1065] = {.lex_state = 18, .external_lex_state = 11}, + [1066] = {.lex_state = 18, .external_lex_state = 11}, + [1067] = {.lex_state = 51}, + [1068] = {.lex_state = 51, .external_lex_state = 9}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, + [1071] = {.lex_state = 51}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 51}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 51}, + [1076] = {.lex_state = 51}, + [1077] = {.lex_state = 0}, [1078] = {.lex_state = 51}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 51}, + [1079] = {.lex_state = 51}, + [1080] = {.lex_state = 0}, [1081] = {.lex_state = 51}, [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, + [1085] = {.lex_state = 51}, [1086] = {.lex_state = 0}, [1087] = {.lex_state = 0}, [1088] = {.lex_state = 51}, @@ -7540,581 +7561,581 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 51}, - [1094] = {.lex_state = 51}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 14}, + [1096] = {.lex_state = 51}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 51}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 51}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 14}, - [1103] = {.lex_state = 51}, - [1104] = {.lex_state = 14}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 51}, + [1102] = {.lex_state = 51}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 0}, [1105] = {.lex_state = 51}, - [1106] = {.lex_state = 14}, - [1107] = {.lex_state = 51}, - [1108] = {.lex_state = 51}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 51}, [1110] = {.lex_state = 51}, - [1111] = {.lex_state = 16}, - [1112] = {.lex_state = 0}, + [1111] = {.lex_state = 51}, + [1112] = {.lex_state = 0, .external_lex_state = 6}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 51}, - [1115] = {.lex_state = 51}, + [1115] = {.lex_state = 0, .external_lex_state = 6}, [1116] = {.lex_state = 51}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 51}, - [1119] = {.lex_state = 14}, + [1117] = {.lex_state = 51}, + [1118] = {.lex_state = 0, .external_lex_state = 6}, + [1119] = {.lex_state = 18, .external_lex_state = 11}, [1120] = {.lex_state = 14}, - [1121] = {.lex_state = 14}, - [1122] = {.lex_state = 14}, - [1123] = {.lex_state = 14}, - [1124] = {.lex_state = 14}, - [1125] = {.lex_state = 14}, + [1121] = {.lex_state = 0, .external_lex_state = 6}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 0, .external_lex_state = 6}, + [1124] = {.lex_state = 51}, + [1125] = {.lex_state = 51}, [1126] = {.lex_state = 0, .external_lex_state = 6}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 51}, + [1127] = {.lex_state = 51}, + [1128] = {.lex_state = 51}, + [1129] = {.lex_state = 0, .external_lex_state = 6}, [1130] = {.lex_state = 51}, [1131] = {.lex_state = 14}, [1132] = {.lex_state = 51}, [1133] = {.lex_state = 51}, - [1134] = {.lex_state = 0, .external_lex_state = 6}, - [1135] = {.lex_state = 18, .external_lex_state = 11}, + [1134] = {.lex_state = 51}, + [1135] = {.lex_state = 0}, [1136] = {.lex_state = 51}, - [1137] = {.lex_state = 51}, + [1137] = {.lex_state = 0, .external_lex_state = 6}, [1138] = {.lex_state = 51}, - [1139] = {.lex_state = 51}, + [1139] = {.lex_state = 0, .external_lex_state = 6}, [1140] = {.lex_state = 51}, - [1141] = {.lex_state = 0, .external_lex_state = 6}, - [1142] = {.lex_state = 0, .external_lex_state = 6}, - [1143] = {.lex_state = 14}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0, .external_lex_state = 6}, - [1146] = {.lex_state = 0, .external_lex_state = 6}, + [1141] = {.lex_state = 51}, + [1142] = {.lex_state = 51}, + [1143] = {.lex_state = 51}, + [1144] = {.lex_state = 51}, + [1145] = {.lex_state = 14}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0, .external_lex_state = 6}, [1148] = {.lex_state = 51}, [1149] = {.lex_state = 18, .external_lex_state = 11}, [1150] = {.lex_state = 51}, [1151] = {.lex_state = 51}, - [1152] = {.lex_state = 0, .external_lex_state = 6}, + [1152] = {.lex_state = 14}, [1153] = {.lex_state = 51}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 0, .external_lex_state = 6}, - [1156] = {.lex_state = 0, .external_lex_state = 6}, - [1157] = {.lex_state = 0}, + [1154] = {.lex_state = 51}, + [1155] = {.lex_state = 51}, + [1156] = {.lex_state = 51}, + [1157] = {.lex_state = 51}, [1158] = {.lex_state = 51}, - [1159] = {.lex_state = 51}, - [1160] = {.lex_state = 51}, - [1161] = {.lex_state = 51}, - [1162] = {.lex_state = 51}, + [1159] = {.lex_state = 14}, + [1160] = {.lex_state = 16}, + [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1162] = {.lex_state = 14}, [1163] = {.lex_state = 51}, - [1164] = {.lex_state = 51}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0, .external_lex_state = 6}, - [1168] = {.lex_state = 51}, - [1169] = {.lex_state = 51}, - [1170] = {.lex_state = 0}, + [1164] = {.lex_state = 14}, + [1165] = {.lex_state = 14}, + [1166] = {.lex_state = 51}, + [1167] = {.lex_state = 14}, + [1168] = {.lex_state = 14}, + [1169] = {.lex_state = 14}, + [1170] = {.lex_state = 14}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 51}, + [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0, .external_lex_state = 6}, - [1177] = {.lex_state = 16}, - [1178] = {.lex_state = 51}, - [1179] = {.lex_state = 0, .external_lex_state = 6}, + [1176] = {.lex_state = 51}, + [1177] = {.lex_state = 51}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0, .external_lex_state = 6}, - [1182] = {.lex_state = 0, .external_lex_state = 6}, + [1182] = {.lex_state = 51}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0, .external_lex_state = 6}, - [1185] = {.lex_state = 51}, - [1186] = {.lex_state = 14}, - [1187] = {.lex_state = 51}, - [1188] = {.lex_state = 14}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 51}, [1189] = {.lex_state = 51}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 51}, - [1195] = {.lex_state = 0, .external_lex_state = 6}, + [1190] = {.lex_state = 51}, + [1191] = {.lex_state = 0, .external_lex_state = 6}, + [1192] = {.lex_state = 51}, + [1193] = {.lex_state = 51}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 51}, [1198] = {.lex_state = 51}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 51}, + [1200] = {.lex_state = 0}, [1201] = {.lex_state = 51}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 51}, - [1204] = {.lex_state = 51}, - [1205] = {.lex_state = 51}, - [1206] = {.lex_state = 0, .external_lex_state = 6}, - [1207] = {.lex_state = 0, .external_lex_state = 6}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 51}, - [1211] = {.lex_state = 51}, - [1212] = {.lex_state = 0, .external_lex_state = 6}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 51}, - [1216] = {.lex_state = 0, .external_lex_state = 6}, - [1217] = {.lex_state = 16, .external_lex_state = 6}, - [1218] = {.lex_state = 51}, - [1219] = {.lex_state = 14}, - [1220] = {.lex_state = 14}, - [1221] = {.lex_state = 51}, - [1222] = {.lex_state = 16}, - [1223] = {.lex_state = 51}, - [1224] = {.lex_state = 16, .external_lex_state = 6}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 51}, + [1209] = {.lex_state = 51}, + [1210] = {.lex_state = 0, .external_lex_state = 6}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 16}, + [1214] = {.lex_state = 51}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 0, .external_lex_state = 6}, + [1220] = {.lex_state = 0, .external_lex_state = 6}, + [1221] = {.lex_state = 14}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0, .external_lex_state = 6}, + [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0, .external_lex_state = 6}, - [1226] = {.lex_state = 18, .external_lex_state = 11}, - [1227] = {.lex_state = 51}, - [1228] = {.lex_state = 16}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 18, .external_lex_state = 11}, + [1230] = {.lex_state = 0}, [1231] = {.lex_state = 51}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 14}, - [1234] = {.lex_state = 51}, - [1235] = {.lex_state = 51}, - [1236] = {.lex_state = 51}, - [1237] = {.lex_state = 51}, - [1238] = {.lex_state = 51}, - [1239] = {.lex_state = 51}, - [1240] = {.lex_state = 0, .external_lex_state = 6}, - [1241] = {.lex_state = 51}, - [1242] = {.lex_state = 0, .external_lex_state = 6}, - [1243] = {.lex_state = 0, .external_lex_state = 6}, + [1233] = {.lex_state = 51}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0, .external_lex_state = 6}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 14}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0, .external_lex_state = 6}, + [1240] = {.lex_state = 51}, + [1241] = {.lex_state = 0, .external_lex_state = 6}, + [1242] = {.lex_state = 16, .external_lex_state = 6}, + [1243] = {.lex_state = 51}, [1244] = {.lex_state = 51}, - [1245] = {.lex_state = 51}, + [1245] = {.lex_state = 16, .external_lex_state = 6}, [1246] = {.lex_state = 51}, - [1247] = {.lex_state = 51}, - [1248] = {.lex_state = 16}, - [1249] = {.lex_state = 16, .external_lex_state = 6}, + [1247] = {.lex_state = 0, .external_lex_state = 6}, + [1248] = {.lex_state = 18, .external_lex_state = 11}, + [1249] = {.lex_state = 51}, [1250] = {.lex_state = 51}, - [1251] = {.lex_state = 18, .external_lex_state = 11}, + [1251] = {.lex_state = 16}, [1252] = {.lex_state = 18, .external_lex_state = 11}, [1253] = {.lex_state = 51}, - [1254] = {.lex_state = 18, .external_lex_state = 11}, - [1255] = {.lex_state = 18, .external_lex_state = 11}, - [1256] = {.lex_state = 51}, + [1254] = {.lex_state = 51}, + [1255] = {.lex_state = 0, .external_lex_state = 6}, + [1256] = {.lex_state = 16}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 51}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 51}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0, .external_lex_state = 6}, - [1265] = {.lex_state = 0, .external_lex_state = 6}, - [1266] = {.lex_state = 14}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0, .external_lex_state = 6}, - [1269] = {.lex_state = 14}, - [1270] = {.lex_state = 0, .external_lex_state = 6}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0, .external_lex_state = 6}, + [1259] = {.lex_state = 18, .external_lex_state = 11}, + [1260] = {.lex_state = 18, .external_lex_state = 11}, + [1261] = {.lex_state = 51}, + [1262] = {.lex_state = 16, .external_lex_state = 6}, + [1263] = {.lex_state = 51}, + [1264] = {.lex_state = 51}, + [1265] = {.lex_state = 51}, + [1266] = {.lex_state = 51}, + [1267] = {.lex_state = 51}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 16}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 0, .external_lex_state = 6}, + [1272] = {.lex_state = 14}, [1273] = {.lex_state = 51}, - [1274] = {.lex_state = 0, .external_lex_state = 6}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0, .external_lex_state = 6}, + [1274] = {.lex_state = 14}, + [1275] = {.lex_state = 18, .external_lex_state = 11}, + [1276] = {.lex_state = 51}, + [1277] = {.lex_state = 51}, [1278] = {.lex_state = 0, .external_lex_state = 6}, - [1279] = {.lex_state = 10}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0, .external_lex_state = 6}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 51}, + [1279] = {.lex_state = 51}, + [1280] = {.lex_state = 51}, + [1281] = {.lex_state = 18, .external_lex_state = 11}, + [1282] = {.lex_state = 51}, + [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0, .external_lex_state = 6}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 10}, - [1289] = {.lex_state = 0, .external_lex_state = 6}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 14}, - [1292] = {.lex_state = 10}, - [1293] = {.lex_state = 51}, - [1294] = {.lex_state = 16, .external_lex_state = 6}, + [1285] = {.lex_state = 51}, + [1286] = {.lex_state = 0, .external_lex_state = 6}, + [1287] = {.lex_state = 10}, + [1288] = {.lex_state = 0, .external_lex_state = 6}, + [1289] = {.lex_state = 14}, + [1290] = {.lex_state = 0, .external_lex_state = 6}, + [1291] = {.lex_state = 51}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 16, .external_lex_state = 6}, + [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0, .external_lex_state = 6}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0, .external_lex_state = 6}, - [1298] = {.lex_state = 0, .external_lex_state = 6}, + [1296] = {.lex_state = 14}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0, .external_lex_state = 6}, [1300] = {.lex_state = 0, .external_lex_state = 6}, - [1301] = {.lex_state = 0, .external_lex_state = 6}, - [1302] = {.lex_state = 51}, + [1301] = {.lex_state = 14}, + [1302] = {.lex_state = 0, .external_lex_state = 6}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0, .external_lex_state = 6}, + [1304] = {.lex_state = 0, .external_lex_state = 6}, + [1305] = {.lex_state = 10}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 14}, - [1309] = {.lex_state = 51}, - [1310] = {.lex_state = 0, .external_lex_state = 6}, + [1307] = {.lex_state = 51}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 51}, - [1313] = {.lex_state = 51}, - [1314] = {.lex_state = 51, .external_lex_state = 8}, - [1315] = {.lex_state = 51, .external_lex_state = 9}, + [1313] = {.lex_state = 0, .external_lex_state = 6}, + [1314] = {.lex_state = 51}, + [1315] = {.lex_state = 10}, [1316] = {.lex_state = 0, .external_lex_state = 6}, - [1317] = {.lex_state = 0, .external_lex_state = 6}, - [1318] = {.lex_state = 14}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0, .external_lex_state = 6}, - [1321] = {.lex_state = 0, .external_lex_state = 6}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0, .external_lex_state = 6}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0, .external_lex_state = 6}, - [1323] = {.lex_state = 16}, - [1324] = {.lex_state = 51}, + [1323] = {.lex_state = 0, .external_lex_state = 6}, + [1324] = {.lex_state = 0}, [1325] = {.lex_state = 51}, [1326] = {.lex_state = 0, .external_lex_state = 6}, - [1327] = {.lex_state = 51}, + [1327] = {.lex_state = 0, .external_lex_state = 6}, [1328] = {.lex_state = 0, .external_lex_state = 6}, - [1329] = {.lex_state = 51}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, + [1329] = {.lex_state = 0, .external_lex_state = 6}, + [1330] = {.lex_state = 14}, + [1331] = {.lex_state = 51}, [1332] = {.lex_state = 0, .external_lex_state = 6}, - [1333] = {.lex_state = 0}, + [1333] = {.lex_state = 51}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0, .external_lex_state = 6}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 51}, - [1338] = {.lex_state = 0, .external_lex_state = 6}, - [1339] = {.lex_state = 51}, - [1340] = {.lex_state = 51}, + [1336] = {.lex_state = 0, .external_lex_state = 6}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0, .external_lex_state = 6}, + [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 51}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 51}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 16}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0, .external_lex_state = 6}, + [1346] = {.lex_state = 0, .external_lex_state = 6}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, + [1348] = {.lex_state = 51}, [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0, .external_lex_state = 6}, - [1351] = {.lex_state = 51}, - [1352] = {.lex_state = 51}, - [1353] = {.lex_state = 0, .external_lex_state = 6}, - [1354] = {.lex_state = 0, .external_lex_state = 6}, - [1355] = {.lex_state = 51}, - [1356] = {.lex_state = 51}, - [1357] = {.lex_state = 51}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0, .external_lex_state = 6}, + [1350] = {.lex_state = 51}, + [1351] = {.lex_state = 0, .external_lex_state = 6}, + [1352] = {.lex_state = 16}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 14}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 51}, + [1359] = {.lex_state = 51}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0, .external_lex_state = 6}, + [1363] = {.lex_state = 51}, [1364] = {.lex_state = 51}, - [1365] = {.lex_state = 0, .external_lex_state = 6}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0, .external_lex_state = 6}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0, .external_lex_state = 6}, - [1371] = {.lex_state = 0}, + [1368] = {.lex_state = 0, .external_lex_state = 6}, + [1369] = {.lex_state = 51, .external_lex_state = 9}, + [1370] = {.lex_state = 51}, + [1371] = {.lex_state = 51}, [1372] = {.lex_state = 0, .external_lex_state = 6}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 16}, + [1373] = {.lex_state = 51, .external_lex_state = 8}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, + [1376] = {.lex_state = 51}, + [1377] = {.lex_state = 51}, + [1378] = {.lex_state = 51}, [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 51}, - [1381] = {.lex_state = 0, .external_lex_state = 6}, - [1382] = {.lex_state = 0}, + [1380] = {.lex_state = 0, .external_lex_state = 6}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 51}, [1383] = {.lex_state = 51}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 51}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0, .external_lex_state = 6}, - [1389] = {.lex_state = 51}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0, .external_lex_state = 6}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0, .external_lex_state = 6}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 0, .external_lex_state = 6}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, + [1393] = {.lex_state = 0, .external_lex_state = 6}, + [1394] = {.lex_state = 0, .external_lex_state = 6}, + [1395] = {.lex_state = 51}, [1396] = {.lex_state = 0}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 14}, - [1402] = {.lex_state = 0}, + [1399] = {.lex_state = 0, .external_lex_state = 6}, + [1400] = {.lex_state = 51}, + [1401] = {.lex_state = 0, .external_lex_state = 6}, + [1402] = {.lex_state = 0, .external_lex_state = 6}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, + [1404] = {.lex_state = 0, .external_lex_state = 6}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 16}, + [1406] = {.lex_state = 51}, + [1407] = {.lex_state = 51}, + [1408] = {.lex_state = 51}, [1409] = {.lex_state = 0}, [1410] = {.lex_state = 51}, - [1411] = {.lex_state = 0}, + [1411] = {.lex_state = 0, .external_lex_state = 6}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 10}, + [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 0}, + [1417] = {.lex_state = 51}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, + [1422] = {.lex_state = 51}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 14}, + [1425] = {.lex_state = 0, .external_lex_state = 6}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0, .external_lex_state = 6}, + [1428] = {.lex_state = 0, .external_lex_state = 6}, + [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, + [1431] = {.lex_state = 10}, [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, + [1435] = {.lex_state = 14}, + [1436] = {.lex_state = 0, .external_lex_state = 6}, + [1437] = {.lex_state = 51}, [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 51}, + [1442] = {.lex_state = 0, .external_lex_state = 6}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 0}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 10}, + [1446] = {.lex_state = 0, .external_lex_state = 6}, [1447] = {.lex_state = 0}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 14}, - [1451] = {.lex_state = 0, .external_lex_state = 6}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 16}, [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 51}, - [1454] = {.lex_state = 51}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, [1456] = {.lex_state = 0}, [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0, .external_lex_state = 6}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 51}, - [1464] = {.lex_state = 10}, - [1465] = {.lex_state = 0, .external_lex_state = 6}, + [1463] = {.lex_state = 10}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 51}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 51}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, + [1474] = {.lex_state = 51}, [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 10}, - [1477] = {.lex_state = 51}, - [1478] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 51}, [1479] = {.lex_state = 0}, [1480] = {.lex_state = 0}, [1481] = {.lex_state = 51}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 51}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 51}, + [1485] = {.lex_state = 0, .external_lex_state = 6}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 51}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, [1490] = {.lex_state = 0}, [1491] = {.lex_state = 51}, - [1492] = {.lex_state = 10}, + [1492] = {.lex_state = 14}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0, .external_lex_state = 6}, + [1494] = {.lex_state = 51}, [1495] = {.lex_state = 51}, - [1496] = {.lex_state = 14}, + [1496] = {.lex_state = 0}, [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 51}, + [1499] = {.lex_state = 10}, + [1500] = {.lex_state = 0}, [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 51}, - [1504] = {.lex_state = 51}, + [1502] = {.lex_state = 14}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, + [1507] = {.lex_state = 51}, + [1508] = {.lex_state = 10}, + [1509] = {.lex_state = 0, .external_lex_state = 6}, [1510] = {.lex_state = 51}, [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0, .external_lex_state = 6}, + [1512] = {.lex_state = 51}, + [1513] = {.lex_state = 0}, [1514] = {.lex_state = 0}, [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0, .external_lex_state = 6}, - [1517] = {.lex_state = 0, .external_lex_state = 6}, + [1516] = {.lex_state = 51}, + [1517] = {.lex_state = 10}, [1518] = {.lex_state = 0}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0, .external_lex_state = 6}, - [1522] = {.lex_state = 0, .external_lex_state = 6}, + [1520] = {.lex_state = 51}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 51}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 17}, - [1526] = {.lex_state = 0, .external_lex_state = 6}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0, .external_lex_state = 6}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0, .external_lex_state = 6}, - [1531] = {.lex_state = 17}, + [1524] = {.lex_state = 51}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 14}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0, .external_lex_state = 6}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0, .external_lex_state = 6}, - [1534] = {.lex_state = 0, .external_lex_state = 6}, - [1535] = {.lex_state = 0, .external_lex_state = 6}, - [1536] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 17}, [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 17}, + [1538] = {.lex_state = 17}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, + [1541] = {.lex_state = 17}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 17}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 17}, + [1543] = {.lex_state = 16}, + [1544] = {.lex_state = 17}, + [1545] = {.lex_state = 0, .external_lex_state = 6}, [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, - [1548] = {.lex_state = 51}, + [1547] = {.lex_state = 51}, + [1548] = {.lex_state = 17}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 51}, - [1551] = {.lex_state = 0}, + [1550] = {.lex_state = 17}, + [1551] = {.lex_state = 51}, [1552] = {.lex_state = 0, .external_lex_state = 6}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 51}, - [1556] = {.lex_state = 17}, + [1554] = {.lex_state = 0, .external_lex_state = 6}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 16}, + [1558] = {.lex_state = 0}, [1559] = {.lex_state = 0, .external_lex_state = 6}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 51}, - [1563] = {.lex_state = 0, .external_lex_state = 6}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0, .external_lex_state = 6}, + [1560] = {.lex_state = 17}, + [1561] = {.lex_state = 0, .external_lex_state = 6}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 51}, + [1565] = {.lex_state = 0, .external_lex_state = 6}, + [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0, .external_lex_state = 6}, + [1569] = {.lex_state = 0, .external_lex_state = 6}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0, .external_lex_state = 6}, - [1572] = {.lex_state = 0, .external_lex_state = 6}, - [1573] = {.lex_state = 0, .external_lex_state = 6}, - [1574] = {.lex_state = 51}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0, .external_lex_state = 6}, + [1576] = {.lex_state = 17}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0, .external_lex_state = 6}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, + [1579] = {.lex_state = 0, .external_lex_state = 6}, + [1580] = {.lex_state = 0, .external_lex_state = 6}, + [1581] = {.lex_state = 0, .external_lex_state = 6}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 17}, - [1588] = {.lex_state = 0, .external_lex_state = 6}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 17}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 51}, + [1584] = {.lex_state = 0, .external_lex_state = 6}, + [1585] = {.lex_state = 0, .external_lex_state = 6}, + [1586] = {.lex_state = 0, .external_lex_state = 6}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0, .external_lex_state = 6}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0, .external_lex_state = 6}, + [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, + [1594] = {.lex_state = 51}, [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, + [1596] = {.lex_state = 0, .external_lex_state = 6}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 51}, - [1600] = {.lex_state = 51}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 51}, - [1603] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 0, .external_lex_state = 6}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 51}, + [1605] = {.lex_state = 0, .external_lex_state = 6}, [1606] = {.lex_state = 51}, - [1607] = {.lex_state = 51}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 51}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 51}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 51}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0, .external_lex_state = 6}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 0, .external_lex_state = 6}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 17}, + [1613] = {.lex_state = 51}, + [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 51}, + [1617] = {.lex_state = 0}, [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 51}, - [1620] = {.lex_state = 51}, - [1621] = {.lex_state = 51}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, [1622] = {.lex_state = 51}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 51}, - [1628] = {.lex_state = 51}, + [1626] = {.lex_state = 51}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, [1629] = {.lex_state = 51}, - [1630] = {.lex_state = 0}, + [1630] = {.lex_state = 51}, [1631] = {.lex_state = 0}, [1632] = {.lex_state = 51}, - [1633] = {.lex_state = 51}, + [1633] = {.lex_state = 0}, [1634] = {.lex_state = 51}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, + [1635] = {.lex_state = 51}, + [1636] = {.lex_state = 51}, + [1637] = {.lex_state = 51}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, + [1639] = {.lex_state = 51}, [1640] = {.lex_state = 0}, [1641] = {.lex_state = 0}, [1642] = {.lex_state = 51}, - [1643] = {.lex_state = 0}, + [1643] = {.lex_state = 51}, [1644] = {.lex_state = 51}, [1645] = {.lex_state = 51}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 51}, - [1648] = {.lex_state = 0}, + [1648] = {.lex_state = 51}, [1649] = {.lex_state = 51}, [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 51}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 51}, - [1654] = {.lex_state = 51}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 51}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 51}, + [1658] = {.lex_state = 0}, [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 51}, - [1661] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 51}, [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, + [1663] = {.lex_state = 51}, [1664] = {.lex_state = 0}, [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, + [1667] = {.lex_state = 51}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, @@ -8129,58 +8150,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1679] = {.lex_state = 0}, [1680] = {.lex_state = 0}, [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 51}, - [1683] = {.lex_state = 0}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 51}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 51}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 51}, - [1691] = {.lex_state = 0}, + [1687] = {.lex_state = 51}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 51}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 51}, [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, + [1693] = {.lex_state = 51}, [1694] = {.lex_state = 0}, [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, + [1697] = {.lex_state = 51}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 51}, + [1699] = {.lex_state = 0}, [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, + [1701] = {.lex_state = 51}, [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 51}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 51}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 51}, + [1705] = {.lex_state = 0}, [1706] = {.lex_state = 51}, - [1707] = {.lex_state = 51}, + [1707] = {.lex_state = 0}, [1708] = {.lex_state = 0}, [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 51}, + [1710] = {.lex_state = 0}, [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 51}, + [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 0}, + [1715] = {.lex_state = 51}, + [1716] = {.lex_state = 51}, [1717] = {.lex_state = 0}, [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, + [1719] = {.lex_state = 51}, [1720] = {.lex_state = 51}, [1721] = {.lex_state = 0}, [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, + [1725] = {.lex_state = 51}, + [1726] = {.lex_state = 51}, [1727] = {.lex_state = 0}, [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, + [1729] = {.lex_state = 51}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, + [1732] = {.lex_state = 51}, [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 0}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 0}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 51}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 0}, + [1752] = {.lex_state = 51}, + [1753] = {.lex_state = 51}, + [1754] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8293,75 +8335,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(1610), - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1128), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1128), + [sym_module] = STATE(1708), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1172), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1172), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), @@ -8412,75 +8454,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(2)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(330), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(491), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -8533,19 +8575,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(3)] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -8553,53 +8595,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(1213), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(1195), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -8652,19 +8694,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(4)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -8672,53 +8714,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(312), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(329), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -8771,19 +8813,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(5)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -8791,53 +8833,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(474), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(478), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -8890,19 +8932,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(6)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -8910,53 +8952,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(609), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(604), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9009,19 +9051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(7)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9029,53 +9071,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(514), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(615), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9128,19 +9170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(8)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9148,53 +9190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(552), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(525), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9247,19 +9289,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(9)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9267,53 +9309,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(572), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(541), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9366,19 +9408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(10)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9386,53 +9428,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(575), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(547), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9485,19 +9527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(11)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9505,53 +9547,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(577), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(550), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9604,19 +9646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(12)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9624,53 +9666,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(580), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(582), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9723,19 +9765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(13)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9743,53 +9785,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(473), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(490), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9842,19 +9884,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(14)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9862,53 +9904,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(448), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(447), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -9961,19 +10003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(15)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -9981,53 +10023,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(586), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(609), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10080,19 +10122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(16)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10100,53 +10142,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(591), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(601), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10199,19 +10241,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(17)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10219,53 +10261,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(592), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(612), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10318,19 +10360,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(18)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10338,53 +10380,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(507), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(512), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10437,19 +10479,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(19)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10457,53 +10499,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(462), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(468), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10556,19 +10598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(20)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10576,53 +10618,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(595), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(542), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10675,19 +10717,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(21)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10695,53 +10737,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(445), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(455), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10794,19 +10836,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(22)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10814,53 +10856,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(505), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(496), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10913,19 +10955,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(23)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10933,53 +10975,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(597), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(606), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11032,19 +11074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(24)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11052,53 +11094,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(467), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(472), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11151,19 +11193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(25)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11171,53 +11213,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(601), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(517), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11270,19 +11312,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(26)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11290,53 +11332,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(456), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(442), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11389,19 +11431,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(27)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11409,53 +11451,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(498), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(508), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11508,19 +11550,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(28)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11528,53 +11570,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(604), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(522), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11627,19 +11669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(29)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11647,53 +11689,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(605), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(523), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11746,19 +11788,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(30)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11766,53 +11808,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(438), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(450), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11865,19 +11907,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(31)] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -11885,53 +11927,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(439), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(451), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11982,75 +12024,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(32)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(475), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(322), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12101,75 +12143,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(33)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(524), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(559), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12220,75 +12262,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(34)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(529), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(567), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12339,75 +12381,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(35)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(535), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(573), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12458,75 +12500,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(36)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(537), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(575), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12577,75 +12619,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(37)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(539), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(577), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12696,75 +12738,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(38)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(541), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(579), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12815,75 +12857,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(39)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(483), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(486), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12934,75 +12976,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(40)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(446), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13053,75 +13095,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(41)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(545), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(583), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13172,75 +13214,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(42)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(511), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(586), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13291,75 +13333,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(43)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(549), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(587), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13410,75 +13452,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(44)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(491), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(502), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13529,75 +13571,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(45)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(470), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13648,75 +13690,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(46)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(554), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(591), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13767,75 +13809,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(47)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(455), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(459), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -13886,75 +13928,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(48)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(488), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(504), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14005,75 +14047,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(49)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(558), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(595), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14124,75 +14166,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(50)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(481), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(489), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14243,75 +14285,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(51)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(561), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(598), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14362,75 +14404,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(52)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(435), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(460), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14481,75 +14523,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(53)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(506), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(507), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14600,75 +14642,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(54)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(564), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(602), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14719,75 +14761,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(55)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(565), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(603), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14838,75 +14880,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(56)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(441), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(464), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -14957,75 +14999,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(57)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(443), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(439), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15078,19 +15120,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(58)] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -15098,53 +15140,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(1175), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(1215), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15195,140 +15237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(59)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1127), - [sym_block] = STATE(522), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1127), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(87), - [anon_sym_async] = ACTIONS(89), - [anon_sym_for] = ACTIONS(91), - [anon_sym_while] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [anon_sym_with] = ACTIONS(97), - [anon_sym_match] = ACTIONS(99), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_def] = ACTIONS(101), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_class] = ACTIONS(103), - [anon_sym_AT] = ACTIONS(69), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(60)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -15336,52 +15259,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1127), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1146), + [sym_block] = STATE(560), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15427,79 +15351,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(61)] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1127), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [STATE(60)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1146), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15545,80 +15469,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(62)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1128), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(115), + [STATE(61)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1146), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15633,24 +15556,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_async] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_with] = ACTIONS(45), - [anon_sym_match] = ACTIONS(47), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_match] = ACTIONS(99), [anon_sym_DASH] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(49), [anon_sym_LBRACK] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(53), [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), + [anon_sym_def] = ACTIONS(101), [anon_sym_global] = ACTIONS(59), [anon_sym_nonlocal] = ACTIONS(61), [anon_sym_exec] = ACTIONS(63), [anon_sym_type] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), + [anon_sym_class] = ACTIONS(103), [anon_sym_AT] = ACTIONS(69), [anon_sym_not] = ACTIONS(71), [anon_sym_TILDE] = ACTIONS(49), @@ -15664,196 +15587,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(63)] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1127), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1127), - [sym_identifier] = ACTIONS(117), - [anon_sym_lazy] = ACTIONS(120), - [anon_sym_import] = ACTIONS(123), - [anon_sym_from] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(132), - [anon_sym_print] = ACTIONS(135), - [anon_sym_assert] = ACTIONS(138), - [anon_sym_return] = ACTIONS(141), - [anon_sym_del] = ACTIONS(144), - [anon_sym_raise] = ACTIONS(147), - [anon_sym_pass] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(156), - [anon_sym_if] = ACTIONS(159), - [anon_sym_async] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(168), - [anon_sym_try] = ACTIONS(171), - [anon_sym_with] = ACTIONS(174), - [anon_sym_match] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_def] = ACTIONS(192), - [anon_sym_global] = ACTIONS(195), - [anon_sym_nonlocal] = ACTIONS(198), - [anon_sym_exec] = ACTIONS(201), - [anon_sym_type] = ACTIONS(204), - [anon_sym_class] = ACTIONS(207), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [sym_ellipsis] = ACTIONS(222), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(222), - [anon_sym_await] = ACTIONS(228), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_none] = ACTIONS(225), + [STATE(62)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1146), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1146), + [sym_identifier] = ACTIONS(115), + [anon_sym_lazy] = ACTIONS(118), + [anon_sym_import] = ACTIONS(121), + [anon_sym_from] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(127), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_print] = ACTIONS(133), + [anon_sym_assert] = ACTIONS(136), + [anon_sym_return] = ACTIONS(139), + [anon_sym_del] = ACTIONS(142), + [anon_sym_raise] = ACTIONS(145), + [anon_sym_pass] = ACTIONS(148), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(154), + [anon_sym_if] = ACTIONS(157), + [anon_sym_async] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(166), + [anon_sym_try] = ACTIONS(169), + [anon_sym_with] = ACTIONS(172), + [anon_sym_match] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(184), + [anon_sym_STAR_STAR] = ACTIONS(187), + [anon_sym_def] = ACTIONS(190), + [anon_sym_global] = ACTIONS(193), + [anon_sym_nonlocal] = ACTIONS(196), + [anon_sym_exec] = ACTIONS(199), + [anon_sym_type] = ACTIONS(202), + [anon_sym_class] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(208), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(231), - [sym__string_start] = ACTIONS(233), - [sym__template_string_start] = ACTIONS(236), + [sym__dedent] = ACTIONS(229), + [sym__string_start] = ACTIONS(231), + [sym__template_string_start] = ACTIONS(234), }, - [STATE(64)] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1127), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1127), + [STATE(63)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1146), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1146), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -15899,26 +15823,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(239), + [sym__dedent] = ACTIONS(237), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(64)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1172), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1172), + [ts_builtin_sym_end] = ACTIONS(239), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_with] = ACTIONS(45), + [anon_sym_match] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_AT] = ACTIONS(69), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, [STATE(65)] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), [sym_if_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_while_statement] = STATE(65), @@ -15926,67 +15968,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1128), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_decorator] = STATE(1172), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(231), - [sym_identifier] = ACTIONS(117), - [anon_sym_lazy] = ACTIONS(120), - [anon_sym_import] = ACTIONS(123), - [anon_sym_from] = ACTIONS(126), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(132), - [anon_sym_print] = ACTIONS(135), - [anon_sym_assert] = ACTIONS(138), - [anon_sym_return] = ACTIONS(141), - [anon_sym_del] = ACTIONS(144), - [anon_sym_raise] = ACTIONS(147), - [anon_sym_pass] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(156), + [aux_sym_decorated_definition_repeat1] = STATE(1172), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_identifier] = ACTIONS(115), + [anon_sym_lazy] = ACTIONS(118), + [anon_sym_import] = ACTIONS(121), + [anon_sym_from] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(127), + [anon_sym_STAR] = ACTIONS(130), + [anon_sym_print] = ACTIONS(133), + [anon_sym_assert] = ACTIONS(136), + [anon_sym_return] = ACTIONS(139), + [anon_sym_del] = ACTIONS(142), + [anon_sym_raise] = ACTIONS(145), + [anon_sym_pass] = ACTIONS(148), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(154), [anon_sym_if] = ACTIONS(241), [anon_sym_async] = ACTIONS(244), [anon_sym_for] = ACTIONS(247), @@ -15994,64 +16036,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(253), [anon_sym_with] = ACTIONS(256), [anon_sym_match] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(186), - [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(184), + [anon_sym_STAR_STAR] = ACTIONS(187), [anon_sym_def] = ACTIONS(262), - [anon_sym_global] = ACTIONS(195), - [anon_sym_nonlocal] = ACTIONS(198), - [anon_sym_exec] = ACTIONS(201), - [anon_sym_type] = ACTIONS(204), + [anon_sym_global] = ACTIONS(193), + [anon_sym_nonlocal] = ACTIONS(196), + [anon_sym_exec] = ACTIONS(199), + [anon_sym_type] = ACTIONS(202), [anon_sym_class] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_not] = ACTIONS(213), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(219), - [sym_ellipsis] = ACTIONS(222), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(222), - [anon_sym_await] = ACTIONS(228), - [sym_true] = ACTIONS(225), - [sym_false] = ACTIONS(225), - [sym_none] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(208), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(233), - [sym__template_string_start] = ACTIONS(236), + [sym__string_start] = ACTIONS(231), + [sym__template_string_start] = ACTIONS(234), }, [STATE(66)] = { - [sym_named_expression] = STATE(1032), - [sym_list_splat] = STATE(1518), - [sym_dictionary_splat] = STATE(1518), - [sym_expression_list] = STATE(1654), - [sym_expression] = STATE(1245), - [sym_primary_expression] = STATE(719), - [sym_not_operator] = STATE(1032), - [sym_boolean_operator] = STATE(1032), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_comparison_operator] = STATE(1032), - [sym_lambda] = STATE(1032), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_conditional_expression] = STATE(1032), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_named_expression] = STATE(1037), + [sym_list_splat] = STATE(1573), + [sym_dictionary_splat] = STATE(1573), + [sym_expression_list] = STATE(1725), + [sym_expression] = STATE(1277), + [sym_primary_expression] = STATE(704), + [sym_not_operator] = STATE(1037), + [sym_boolean_operator] = STATE(1037), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_comparison_operator] = STATE(1037), + [sym_lambda] = STATE(1037), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_conditional_expression] = STATE(1037), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(268), [anon_sym_lazy] = ACTIONS(270), [anon_sym_DOT] = ACTIONS(272), @@ -16122,36 +16164,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(67)] = { - [sym_named_expression] = STATE(1032), - [sym_list_splat] = STATE(1518), - [sym_dictionary_splat] = STATE(1518), - [sym_expression_list] = STATE(1600), - [sym_expression] = STATE(1234), - [sym_primary_expression] = STATE(719), - [sym_not_operator] = STATE(1032), - [sym_boolean_operator] = STATE(1032), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_comparison_operator] = STATE(1032), - [sym_lambda] = STATE(1032), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_conditional_expression] = STATE(1032), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_named_expression] = STATE(1037), + [sym_list_splat] = STATE(1573), + [sym_dictionary_splat] = STATE(1573), + [sym_expression_list] = STATE(1753), + [sym_expression] = STATE(1276), + [sym_primary_expression] = STATE(704), + [sym_not_operator] = STATE(1037), + [sym_boolean_operator] = STATE(1037), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_comparison_operator] = STATE(1037), + [sym_lambda] = STATE(1037), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_conditional_expression] = STATE(1037), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(268), [anon_sym_lazy] = ACTIONS(270), [anon_sym_DOT] = ACTIONS(272), @@ -16222,61 +16264,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(68)] = { - [sym__simple_statements] = STATE(614), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(616), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16320,61 +16362,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(69)] = { - [sym__simple_statements] = STATE(567), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16418,61 +16460,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(70)] = { - [sym__simple_statements] = STATE(573), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(320), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16517,60 +16559,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(71)] = { [sym__simple_statements] = STATE(477), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16614,61 +16656,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(72)] = { - [sym__simple_statements] = STATE(576), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(544), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16712,61 +16754,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(73)] = { - [sym__simple_statements] = STATE(325), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(514), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16810,61 +16852,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(74)] = { - [sym__simple_statements] = STATE(463), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(483), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -16908,48 +16950,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(75)] = { - [sym_chevron] = STATE(1370), - [sym_named_expression] = STATE(1156), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_attribute] = STATE(920), - [sym_subscript] = STATE(920), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(349), - [anon_sym_lazy] = ACTIONS(351), + [sym__simple_statements] = STATE(551), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_async] = ACTIONS(319), + [anon_sym_match] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(349), + [sym__indent] = ACTIONS(351), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(76)] = { + [sym__simple_statements] = STATE(594), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_async] = ACTIONS(319), + [anon_sym_match] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(353), + [sym__indent] = ACTIONS(355), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(77)] = { + [sym__simple_statements] = STATE(531), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_async] = ACTIONS(319), + [anon_sym_match] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(357), + [sym__indent] = ACTIONS(359), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(78)] = { + [sym_chevron] = STATE(1323), + [sym_named_expression] = STATE(1126), + [sym_expression] = STATE(1223), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_attribute] = STATE(950), + [sym_subscript] = STATE(950), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(361), + [anon_sym_lazy] = ACTIONS(363), [anon_sym_DOT] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_print] = ACTIONS(363), + [anon_sym_GT_GT] = ACTIONS(365), [anon_sym_COLON_EQ] = ACTIONS(283), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(285), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(363), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(351), + [anon_sym_match] = ACTIONS(363), [anon_sym_PIPE] = ACTIONS(272), [anon_sym_DASH] = ACTIONS(272), [anon_sym_PLUS] = ACTIONS(272), @@ -16957,8 +17293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(53), [anon_sym_STAR_STAR] = ACTIONS(272), [anon_sym_EQ] = ACTIONS(285), - [anon_sym_exec] = ACTIONS(351), - [anon_sym_type] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(363), + [anon_sym_type] = ACTIONS(363), [anon_sym_AT] = ACTIONS(272), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -16995,7 +17331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(77), [sym_integer] = ACTIONS(79), [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(355), + [anon_sym_await] = ACTIONS(367), [sym_true] = ACTIONS(79), [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), @@ -17005,62 +17341,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(76)] = { - [sym__simple_statements] = STATE(513), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(79)] = { + [sym__simple_statements] = STATE(561), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17098,67 +17434,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(357), - [sym__indent] = ACTIONS(359), + [sym__newline] = ACTIONS(369), + [sym__indent] = ACTIONS(371), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(77)] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(80)] = { + [sym__simple_statements] = STATE(562), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17196,67 +17532,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__indent] = ACTIONS(363), + [sym__newline] = ACTIONS(373), + [sym__indent] = ACTIONS(375), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(78)] = { - [sym__simple_statements] = STATE(500), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(81)] = { + [sym__simple_statements] = STATE(441), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17294,67 +17630,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(365), - [sym__indent] = ACTIONS(367), + [sym__newline] = ACTIONS(377), + [sym__indent] = ACTIONS(379), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(79)] = { - [sym__simple_statements] = STATE(465), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(82)] = { + [sym__simple_statements] = STATE(568), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17392,67 +17728,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - [sym__indent] = ACTIONS(371), + [sym__newline] = ACTIONS(381), + [sym__indent] = ACTIONS(383), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(80)] = { + [STATE(83)] = { + [sym__simple_statements] = STATE(482), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_async] = ACTIONS(319), + [anon_sym_match] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(385), + [sym__indent] = ACTIONS(387), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(84)] = { + [sym__simple_statements] = STATE(448), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(7), + [anon_sym_lazy] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_async] = ACTIONS(319), + [anon_sym_match] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_STAR_STAR] = ACTIONS(55), + [anon_sym_global] = ACTIONS(59), + [anon_sym_nonlocal] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(63), + [anon_sym_type] = ACTIONS(65), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(85)] = { [sym__simple_statements] = STATE(570), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17490,67 +18022,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(373), - [sym__indent] = ACTIONS(375), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(81)] = { - [sym__simple_statements] = STATE(523), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(86)] = { + [sym__simple_statements] = STATE(574), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17588,67 +18120,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(377), - [sym__indent] = ACTIONS(379), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(82)] = { - [sym__simple_statements] = STATE(581), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(87)] = { + [sym__simple_statements] = STATE(511), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17686,67 +18218,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(381), - [sym__indent] = ACTIONS(383), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(83)] = { - [sym__simple_statements] = STATE(525), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(88)] = { + [sym__simple_statements] = STATE(576), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17784,67 +18316,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(385), - [sym__indent] = ACTIONS(387), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(84)] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(89)] = { + [sym__simple_statements] = STATE(613), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17882,67 +18414,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__indent] = ACTIONS(391), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(85)] = { - [sym__simple_statements] = STATE(584), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(90)] = { + [sym__simple_statements] = STATE(497), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17980,67 +18512,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(393), - [sym__indent] = ACTIONS(395), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(86)] = { - [sym__simple_statements] = STATE(530), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(91)] = { + [sym__simple_statements] = STATE(485), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18078,67 +18610,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(397), - [sym__indent] = ACTIONS(399), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(87)] = { - [sym__simple_statements] = STATE(486), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(92)] = { + [sym__simple_statements] = STATE(332), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18176,67 +18708,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(401), - [sym__indent] = ACTIONS(403), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(88)] = { - [sym__simple_statements] = STATE(444), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(93)] = { + [sym__simple_statements] = STATE(580), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18274,67 +18806,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(405), - [sym__indent] = ACTIONS(407), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(89)] = { - [sym__simple_statements] = STATE(532), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(94)] = { + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18372,67 +18904,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(409), - [sym__indent] = ACTIONS(411), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(90)] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(95)] = { + [sym__simple_statements] = STATE(467), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18470,67 +19002,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(413), - [sym__indent] = ACTIONS(415), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(91)] = { - [sym__simple_statements] = STATE(449), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(96)] = { + [sym__simple_statements] = STATE(456), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18568,67 +19100,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(92)] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(97)] = { + [sym__simple_statements] = STATE(475), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18666,67 +19198,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(93)] = { - [sym__simple_statements] = STATE(497), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(98)] = { + [sym__simple_statements] = STATE(500), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18764,67 +19296,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(94)] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(99)] = { + [sym__simple_statements] = STATE(519), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18862,67 +19394,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(95)] = { - [sym__simple_statements] = STATE(508), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(100)] = { + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18960,67 +19492,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(96)] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(101)] = { + [sym__simple_statements] = STATE(487), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19058,67 +19590,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(457), + [sym__indent] = ACTIONS(459), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(97)] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(102)] = { + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19156,67 +19688,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(441), - [sym__indent] = ACTIONS(443), + [sym__newline] = ACTIONS(461), + [sym__indent] = ACTIONS(463), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(98)] = { - [sym__simple_statements] = STATE(603), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(103)] = { + [sym__simple_statements] = STATE(457), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19254,67 +19786,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(445), - [sym__indent] = ACTIONS(447), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(99)] = { - [sym__simple_statements] = STATE(447), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(104)] = { + [sym__simple_statements] = STATE(590), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19352,67 +19884,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - [sym__indent] = ACTIONS(451), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(100)] = { - [sym__simple_statements] = STATE(460), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(105)] = { + [sym__simple_statements] = STATE(458), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19450,67 +19982,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - [sym__indent] = ACTIONS(455), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(101)] = { - [sym__simple_statements] = STATE(502), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(106)] = { + [sym__simple_statements] = STATE(1216), + [sym_import_statement] = STATE(1402), + [sym_future_import_statement] = STATE(1402), + [sym_import_from_statement] = STATE(1402), + [sym_print_statement] = STATE(1402), + [sym_assert_statement] = STATE(1402), + [sym_expression_statement] = STATE(1402), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1402), + [sym_delete_statement] = STATE(1402), + [sym_raise_statement] = STATE(1402), + [sym_pass_statement] = STATE(1402), + [sym_break_statement] = STATE(1402), + [sym_continue_statement] = STATE(1402), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1402), + [sym_nonlocal_statement] = STATE(1402), + [sym_exec_statement] = STATE(1402), + [sym_type_alias_statement] = STATE(1402), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19548,67 +20080,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - [sym__indent] = ACTIONS(459), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(102)] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(107)] = { + [sym__simple_statements] = STATE(498), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19646,557 +20178,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - [sym__indent] = ACTIONS(463), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(103)] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_async] = ACTIONS(319), - [anon_sym_match] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(465), - [sym__indent] = ACTIONS(467), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(104)] = { - [sym__simple_statements] = STATE(468), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_async] = ACTIONS(319), - [anon_sym_match] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(469), - [sym__indent] = ACTIONS(471), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(105)] = { - [sym__simple_statements] = STATE(594), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_async] = ACTIONS(319), - [anon_sym_match] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(473), - [sym__indent] = ACTIONS(475), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(106)] = { - [sym__simple_statements] = STATE(553), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_async] = ACTIONS(319), - [anon_sym_match] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - [sym__indent] = ACTIONS(479), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(107)] = { - [sym__simple_statements] = STATE(613), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(7), - [anon_sym_lazy] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_async] = ACTIONS(319), - [anon_sym_match] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(53), - [anon_sym_STAR_STAR] = ACTIONS(55), - [anon_sym_global] = ACTIONS(59), - [anon_sym_nonlocal] = ACTIONS(61), - [anon_sym_exec] = ACTIONS(63), - [anon_sym_type] = ACTIONS(65), - [anon_sym_not] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(81), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(481), - [sym__indent] = ACTIONS(483), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), - }, - [STATE(108)] = { - [sym__simple_statements] = STATE(453), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(108)] = { + [sym__simple_statements] = STATE(505), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20240,61 +20282,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(109)] = { - [sym__simple_statements] = STATE(442), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(526), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20338,61 +20380,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(110)] = { - [sym__simple_statements] = STATE(495), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(596), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20436,61 +20478,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(111)] = { - [sym__simple_statements] = STATE(515), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(607), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20534,61 +20576,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(112)] = { - [sym__simple_statements] = STATE(559), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(474), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20632,61 +20674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(113)] = { - [sym__simple_statements] = STATE(489), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(599), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20730,61 +20772,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(114)] = { - [sym__simple_statements] = STATE(517), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(449), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20828,61 +20870,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(115)] = { - [sym__simple_statements] = STATE(562), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(462), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -20926,61 +20968,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(116)] = { - [sym__simple_statements] = STATE(598), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21024,61 +21066,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(117)] = { - [sym__simple_statements] = STATE(459), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(532), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21122,61 +21164,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(118)] = { - [sym__simple_statements] = STATE(331), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(443), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21220,61 +21262,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(119)] = { - [sym__simple_statements] = STATE(602), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(463), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21318,61 +21360,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(120)] = { - [sym__simple_statements] = STATE(440), - [sym_import_statement] = STATE(1332), - [sym_future_import_statement] = STATE(1332), - [sym_import_from_statement] = STATE(1332), - [sym_print_statement] = STATE(1332), - [sym_assert_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1332), - [sym_delete_statement] = STATE(1332), - [sym_raise_statement] = STATE(1332), - [sym_pass_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1332), - [sym_nonlocal_statement] = STATE(1332), - [sym_exec_statement] = STATE(1332), - [sym_type_alias_statement] = STATE(1332), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21416,61 +21458,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(121)] = { - [sym__simple_statements] = STATE(556), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(543), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21514,61 +21556,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(122)] = { - [sym__simple_statements] = STATE(457), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(608), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21612,61 +21654,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(123)] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(1183), + [sym_import_statement] = STATE(1402), + [sym_future_import_statement] = STATE(1402), + [sym_import_from_statement] = STATE(1402), + [sym_print_statement] = STATE(1402), + [sym_assert_statement] = STATE(1402), + [sym_expression_statement] = STATE(1402), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1402), + [sym_delete_statement] = STATE(1402), + [sym_raise_statement] = STATE(1402), + [sym_pass_statement] = STATE(1402), + [sym_break_statement] = STATE(1402), + [sym_continue_statement] = STATE(1402), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1402), + [sym_nonlocal_statement] = STATE(1402), + [sym_exec_statement] = STATE(1402), + [sym_type_alias_statement] = STATE(1402), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21710,61 +21752,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(124)] = { - [sym__simple_statements] = STATE(1171), - [sym_import_statement] = STATE(1299), - [sym_future_import_statement] = STATE(1299), - [sym_import_from_statement] = STATE(1299), - [sym_print_statement] = STATE(1299), - [sym_assert_statement] = STATE(1299), - [sym_expression_statement] = STATE(1299), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1299), - [sym_delete_statement] = STATE(1299), - [sym_raise_statement] = STATE(1299), - [sym_pass_statement] = STATE(1299), - [sym_break_statement] = STATE(1299), - [sym_continue_statement] = STATE(1299), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1299), - [sym_nonlocal_statement] = STATE(1299), - [sym_exec_statement] = STATE(1299), - [sym_type_alias_statement] = STATE(1299), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(446), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21808,61 +21850,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(125)] = { - [sym__simple_statements] = STATE(454), - [sym_import_statement] = STATE(1301), - [sym_future_import_statement] = STATE(1301), - [sym_import_from_statement] = STATE(1301), - [sym_print_statement] = STATE(1301), - [sym_assert_statement] = STATE(1301), - [sym_expression_statement] = STATE(1301), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1301), - [sym_delete_statement] = STATE(1301), - [sym_raise_statement] = STATE(1301), - [sym_pass_statement] = STATE(1301), - [sym_break_statement] = STATE(1301), - [sym_continue_statement] = STATE(1301), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1301), - [sym_nonlocal_statement] = STATE(1301), - [sym_exec_statement] = STATE(1301), - [sym_type_alias_statement] = STATE(1301), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(548), + [sym_import_statement] = STATE(1346), + [sym_future_import_statement] = STATE(1346), + [sym_import_from_statement] = STATE(1346), + [sym_print_statement] = STATE(1346), + [sym_assert_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1346), + [sym_delete_statement] = STATE(1346), + [sym_raise_statement] = STATE(1346), + [sym_pass_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1346), + [sym_nonlocal_statement] = STATE(1346), + [sym_exec_statement] = STATE(1346), + [sym_type_alias_statement] = STATE(1346), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -21906,61 +21948,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(126)] = { - [sym__simple_statements] = STATE(1209), - [sym_import_statement] = STATE(1299), - [sym_future_import_statement] = STATE(1299), - [sym_import_from_statement] = STATE(1299), - [sym_print_statement] = STATE(1299), - [sym_assert_statement] = STATE(1299), - [sym_expression_statement] = STATE(1299), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1299), - [sym_delete_statement] = STATE(1299), - [sym_raise_statement] = STATE(1299), - [sym_pass_statement] = STATE(1299), - [sym_break_statement] = STATE(1299), - [sym_continue_statement] = STATE(1299), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1299), - [sym_nonlocal_statement] = STATE(1299), - [sym_exec_statement] = STATE(1299), - [sym_type_alias_statement] = STATE(1299), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym__simple_statements] = STATE(585), + [sym_import_statement] = STATE(1345), + [sym_future_import_statement] = STATE(1345), + [sym_import_from_statement] = STATE(1345), + [sym_print_statement] = STATE(1345), + [sym_assert_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1345), + [sym_delete_statement] = STATE(1345), + [sym_raise_statement] = STATE(1345), + [sym_pass_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1345), + [sym_nonlocal_statement] = STATE(1345), + [sym_exec_statement] = STATE(1345), + [sym_type_alias_statement] = STATE(1345), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22004,60 +22046,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(127)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22100,60 +22142,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(128)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22196,60 +22238,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(129)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22292,60 +22334,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(130)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22388,60 +22430,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(131)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22484,60 +22526,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(132)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22580,60 +22622,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(133)] = { - [sym_import_statement] = STATE(1566), - [sym_future_import_statement] = STATE(1566), - [sym_import_from_statement] = STATE(1566), - [sym_print_statement] = STATE(1566), - [sym_assert_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_named_expression] = STATE(1156), - [sym_return_statement] = STATE(1566), - [sym_delete_statement] = STATE(1566), - [sym_raise_statement] = STATE(1566), - [sym_pass_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_global_statement] = STATE(1566), - [sym_nonlocal_statement] = STATE(1566), - [sym_exec_statement] = STATE(1566), - [sym_type_alias_statement] = STATE(1566), - [sym_expression_list] = STATE(1522), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1522), - [sym_augmented_assignment] = STATE(1522), - [sym_pattern_list] = STATE(1026), - [sym_yield] = STATE(1522), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [sym_import_statement] = STATE(1578), + [sym_future_import_statement] = STATE(1578), + [sym_import_from_statement] = STATE(1578), + [sym_print_statement] = STATE(1578), + [sym_assert_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym_named_expression] = STATE(1126), + [sym_return_statement] = STATE(1578), + [sym_delete_statement] = STATE(1578), + [sym_raise_statement] = STATE(1578), + [sym_pass_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_global_statement] = STATE(1578), + [sym_nonlocal_statement] = STATE(1578), + [sym_exec_statement] = STATE(1578), + [sym_type_alias_statement] = STATE(1578), + [sym_expression_list] = STATE(1545), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1545), + [sym_augmented_assignment] = STATE(1545), + [sym_pattern_list] = STATE(1030), + [sym_yield] = STATE(1545), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -22675,138 +22717,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(85), }, [STATE(134)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), - [sym_identifier] = ACTIONS(311), + [sym_primary_expression] = STATE(799), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_attribute] = STATE(950), + [sym_subscript] = STATE(950), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(79), [anon_sym_lazy] = ACTIONS(573), [anon_sym_DOT] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_COLON_EQ] = ACTIONS(580), - [anon_sym_if] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_async] = ACTIONS(573), - [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(577), - [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_and] = ACTIONS(272), - [anon_sym_or] = ACTIONS(272), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_SLASH_SLASH] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_CARET] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(272), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_AT_EQ] = ACTIONS(588), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_STAR_STAR_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - [sym__template_string_start] = ACTIONS(317), - }, - [STATE(135)] = { - [sym_primary_expression] = STATE(786), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_attribute] = STATE(920), - [sym_subscript] = STATE(920), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(79), - [anon_sym_lazy] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(594), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(592), + [anon_sym_print] = ACTIONS(573), [anon_sym_GT_GT] = ACTIONS(272), [anon_sym_COLON_EQ] = ACTIONS(283), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(285), - [anon_sym_async] = ACTIONS(592), + [anon_sym_async] = ACTIONS(573), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(592), + [anon_sym_match] = ACTIONS(573), [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(579), [anon_sym_LBRACE] = ACTIONS(53), [anon_sym_STAR_STAR] = ACTIONS(272), [anon_sym_EQ] = ACTIONS(285), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), + [anon_sym_exec] = ACTIONS(573), + [anon_sym_type] = ACTIONS(573), [anon_sym_AT] = ACTIONS(272), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -22842,7 +22795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(77), [sym_integer] = ACTIONS(79), [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(600), + [anon_sym_await] = ACTIONS(581), [sym_true] = ACTIONS(79), [sym_false] = ACTIONS(79), [sym_none] = ACTIONS(79), @@ -22852,54 +22805,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, + [STATE(135)] = { + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), + [sym_identifier] = ACTIONS(311), + [anon_sym_lazy] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(590), + [anon_sym_if] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(592), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(272), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_not] = ACTIONS(272), + [anon_sym_and] = ACTIONS(272), + [anon_sym_or] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_LT] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(272), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_is] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_AT_EQ] = ACTIONS(598), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_STAR_STAR_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [sym_ellipsis] = ACTIONS(309), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(309), + [anon_sym_await] = ACTIONS(600), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_none] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(315), + [sym__template_string_start] = ACTIONS(317), + }, [STATE(136)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(585), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_COLON_EQ] = ACTIONS(590), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(272), [anon_sym_else] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(301), [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(596), [anon_sym_RBRACK] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -22922,7 +22962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), + [anon_sym_await] = ACTIONS(600), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -22931,52 +22971,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(137)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(585), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(303), [anon_sym_else] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(301), [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(596), [anon_sym_RBRACK] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -22999,7 +23039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), + [anon_sym_await] = ACTIONS(600), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -23008,42 +23048,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(138)] = { - [sym_primary_expression] = STATE(740), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(747), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_as] = ACTIONS(272), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_COLON_EQ] = ACTIONS(604), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(606), @@ -23052,8 +23092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23085,49 +23125,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(139)] = { - [sym_primary_expression] = STATE(786), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_attribute] = STATE(920), - [sym_subscript] = STATE(920), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(79), - [anon_sym_lazy] = ACTIONS(592), + [sym_primary_expression] = STATE(805), + [sym_binary_operator] = STATE(949), + [sym_unary_operator] = STATE(949), + [sym_attribute] = STATE(949), + [sym_subscript] = STATE(949), + [sym_call] = STATE(949), + [sym_list] = STATE(949), + [sym_set] = STATE(949), + [sym_tuple] = STATE(949), + [sym_dictionary] = STATE(949), + [sym_list_comprehension] = STATE(949), + [sym_dictionary_comprehension] = STATE(949), + [sym_set_comprehension] = STATE(949), + [sym_generator_expression] = STATE(949), + [sym_parenthesized_expression] = STATE(949), + [sym_concatenated_string] = STATE(949), + [sym_string] = STATE(781), + [sym_concatenated_template_string] = STATE(949), + [sym_template_string] = STATE(782), + [sym_await] = STATE(949), + [sym_identifier] = ACTIONS(612), + [anon_sym_lazy] = ACTIONS(614), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_from] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(616), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(592), + [anon_sym_print] = ACTIONS(614), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(283), + [anon_sym_COLON_EQ] = ACTIONS(618), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(592), + [anon_sym_async] = ACTIONS(614), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(592), + [anon_sym_match] = ACTIONS(614), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), + [anon_sym_exec] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23138,7 +23178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(620), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23147,63 +23187,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(600), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), + [sym_ellipsis] = ACTIONS(626), + [anon_sym_COLON2] = ACTIONS(303), + [sym_type_conversion] = ACTIONS(303), + [sym_integer] = ACTIONS(612), + [sym_float] = ACTIONS(626), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_none] = ACTIONS(612), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), + [sym__string_start] = ACTIONS(630), + [sym__template_string_start] = ACTIONS(632), }, [STATE(140)] = { - [sym_primary_expression] = STATE(800), - [sym_binary_operator] = STATE(878), - [sym_unary_operator] = STATE(878), - [sym_attribute] = STATE(878), - [sym_subscript] = STATE(878), - [sym_call] = STATE(878), - [sym_list] = STATE(878), - [sym_set] = STATE(878), - [sym_tuple] = STATE(878), - [sym_dictionary] = STATE(878), - [sym_list_comprehension] = STATE(878), - [sym_dictionary_comprehension] = STATE(878), - [sym_set_comprehension] = STATE(878), - [sym_generator_expression] = STATE(878), - [sym_parenthesized_expression] = STATE(878), - [sym_concatenated_string] = STATE(878), - [sym_string] = STATE(766), - [sym_concatenated_template_string] = STATE(878), - [sym_template_string] = STATE(776), - [sym_await] = STATE(878), - [sym_identifier] = ACTIONS(612), - [anon_sym_lazy] = ACTIONS(614), + [sym_primary_expression] = STATE(799), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_attribute] = STATE(950), + [sym_subscript] = STATE(950), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(79), + [anon_sym_lazy] = ACTIONS(573), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_from] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(575), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(614), + [anon_sym_print] = ACTIONS(573), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(618), + [anon_sym_COLON_EQ] = ACTIONS(283), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(614), + [anon_sym_async] = ACTIONS(573), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(614), + [anon_sym_match] = ACTIONS(573), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(53), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), + [anon_sym_exec] = ACTIONS(573), + [anon_sym_type] = ACTIONS(573), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23214,7 +23254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(620), + [anon_sym_TILDE] = ACTIONS(49), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23223,63 +23263,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(626), - [anon_sym_COLON2] = ACTIONS(303), - [sym_type_conversion] = ACTIONS(303), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(626), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_none] = ACTIONS(612), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(581), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(630), - [sym__template_string_start] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(303), + [sym__newline] = ACTIONS(303), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), }, [STATE(141)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(585), [anon_sym_RPAREN] = ACTIONS(307), [anon_sym_COMMA] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(307), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_in] = ACTIONS(285), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(596), [anon_sym_RBRACK] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_STAR_STAR] = ACTIONS(272), [anon_sym_EQ] = ACTIONS(307), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(272), [anon_sym_SLASH] = ACTIONS(272), [anon_sym_PERCENT] = ACTIONS(272), @@ -23304,7 +23344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), + [anon_sym_await] = ACTIONS(600), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -23313,117 +23353,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(142)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), - [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_async] = ACTIONS(573), - [anon_sym_in] = ACTIONS(582), - [anon_sym_match] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(272), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_SLASH_SLASH] = ACTIONS(272), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_CARET] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_AT_EQ] = ACTIONS(588), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_STAR_STAR_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - [sym__template_string_start] = ACTIONS(317), - }, - [STATE(143)] = { - [sym_primary_expression] = STATE(740), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(747), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_as] = ACTIONS(272), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(606), @@ -23432,8 +23396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23464,51 +23428,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), [sym__template_string_start] = ACTIONS(317), }, + [STATE(143)] = { + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), + [sym_identifier] = ACTIONS(311), + [anon_sym_lazy] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(598), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(592), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_RBRACK] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_AT_EQ] = ACTIONS(598), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_STAR_STAR_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [sym_ellipsis] = ACTIONS(309), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(309), + [anon_sym_await] = ACTIONS(600), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_none] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(315), + [sym__template_string_start] = ACTIONS(317), + }, [STATE(144)] = { - [sym_primary_expression] = STATE(740), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(747), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_COLON_EQ] = ACTIONS(604), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(606), [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23540,50 +23580,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(145)] = { - [sym_primary_expression] = STATE(740), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(808), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(636), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(604), + [anon_sym_COLON_EQ] = ACTIONS(638), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_async] = ACTIONS(583), [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23594,7 +23634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(640), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23606,7 +23646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(610), + [anon_sym_await] = ACTIONS(644), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -23615,50 +23655,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(146)] = { - [sym_primary_expression] = STATE(835), - [sym_binary_operator] = STATE(970), - [sym_unary_operator] = STATE(970), - [sym_attribute] = STATE(970), - [sym_subscript] = STATE(970), - [sym_call] = STATE(970), - [sym_list] = STATE(970), - [sym_set] = STATE(970), - [sym_tuple] = STATE(970), - [sym_dictionary] = STATE(970), - [sym_list_comprehension] = STATE(970), - [sym_dictionary_comprehension] = STATE(970), - [sym_set_comprehension] = STATE(970), - [sym_generator_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(970), - [sym_concatenated_string] = STATE(970), - [sym_string] = STATE(793), - [sym_concatenated_template_string] = STATE(970), - [sym_template_string] = STATE(794), - [sym_await] = STATE(970), - [sym_identifier] = ACTIONS(636), - [anon_sym_lazy] = ACTIONS(638), + [sym_primary_expression] = STATE(839), + [sym_binary_operator] = STATE(985), + [sym_unary_operator] = STATE(985), + [sym_attribute] = STATE(985), + [sym_subscript] = STATE(985), + [sym_call] = STATE(985), + [sym_list] = STATE(985), + [sym_set] = STATE(985), + [sym_tuple] = STATE(985), + [sym_dictionary] = STATE(985), + [sym_list_comprehension] = STATE(985), + [sym_dictionary_comprehension] = STATE(985), + [sym_set_comprehension] = STATE(985), + [sym_generator_expression] = STATE(985), + [sym_parenthesized_expression] = STATE(985), + [sym_concatenated_string] = STATE(985), + [sym_string] = STATE(790), + [sym_concatenated_template_string] = STATE(985), + [sym_template_string] = STATE(791), + [sym_await] = STATE(985), + [sym_identifier] = ACTIONS(646), + [anon_sym_lazy] = ACTIONS(648), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_as] = ACTIONS(272), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(638), + [anon_sym_print] = ACTIONS(648), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(642), + [anon_sym_COLON_EQ] = ACTIONS(652), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(272), - [anon_sym_async] = ACTIONS(638), + [anon_sym_async] = ACTIONS(648), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(638), + [anon_sym_match] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), + [anon_sym_exec] = ACTIONS(648), + [anon_sym_type] = ACTIONS(648), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23669,7 +23709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(654), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23678,60 +23718,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(650), - [sym_integer] = ACTIONS(636), - [sym_float] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_none] = ACTIONS(636), + [sym_ellipsis] = ACTIONS(660), + [sym_integer] = ACTIONS(646), + [sym_float] = ACTIONS(660), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_none] = ACTIONS(646), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(654), - [sym__template_string_start] = ACTIONS(656), + [sym__string_start] = ACTIONS(664), + [sym__template_string_start] = ACTIONS(666), }, [STATE(147)] = { - [sym_primary_expression] = STATE(786), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_attribute] = STATE(920), - [sym_subscript] = STATE(920), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), - [sym_identifier] = ACTIONS(79), - [anon_sym_lazy] = ACTIONS(592), + [sym_primary_expression] = STATE(805), + [sym_binary_operator] = STATE(949), + [sym_unary_operator] = STATE(949), + [sym_attribute] = STATE(949), + [sym_subscript] = STATE(949), + [sym_call] = STATE(949), + [sym_list] = STATE(949), + [sym_set] = STATE(949), + [sym_tuple] = STATE(949), + [sym_dictionary] = STATE(949), + [sym_list_comprehension] = STATE(949), + [sym_dictionary_comprehension] = STATE(949), + [sym_set_comprehension] = STATE(949), + [sym_generator_expression] = STATE(949), + [sym_parenthesized_expression] = STATE(949), + [sym_concatenated_string] = STATE(949), + [sym_string] = STATE(781), + [sym_concatenated_template_string] = STATE(949), + [sym_template_string] = STATE(782), + [sym_await] = STATE(949), + [sym_identifier] = ACTIONS(612), + [anon_sym_lazy] = ACTIONS(614), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_from] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(616), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(592), + [anon_sym_print] = ACTIONS(614), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(592), + [anon_sym_async] = ACTIONS(614), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(592), + [anon_sym_match] = ACTIONS(614), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(53), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), + [anon_sym_exec] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23742,7 +23782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(620), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23751,64 +23791,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(600), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_none] = ACTIONS(79), + [sym_ellipsis] = ACTIONS(626), + [anon_sym_COLON2] = ACTIONS(303), + [sym_type_conversion] = ACTIONS(303), + [sym_integer] = ACTIONS(612), + [sym_float] = ACTIONS(626), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_none] = ACTIONS(612), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(83), - [sym__template_string_start] = ACTIONS(85), + [sym__string_start] = ACTIONS(630), + [sym__template_string_start] = ACTIONS(632), }, [STATE(148)] = { - [sym_primary_expression] = STATE(784), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [sym_primary_expression] = STATE(747), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(660), + [anon_sym_COLON_EQ] = ACTIONS(604), [anon_sym_if] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_async] = ACTIONS(573), + [anon_sym_async] = ACTIONS(583), [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23819,7 +23859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(606), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23831,7 +23871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(666), + [anon_sym_await] = ACTIONS(610), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -23840,48 +23880,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(317), }, [STATE(149)] = { - [sym_primary_expression] = STATE(800), - [sym_binary_operator] = STATE(878), - [sym_unary_operator] = STATE(878), - [sym_attribute] = STATE(878), - [sym_subscript] = STATE(878), - [sym_call] = STATE(878), - [sym_list] = STATE(878), - [sym_set] = STATE(878), - [sym_tuple] = STATE(878), - [sym_dictionary] = STATE(878), - [sym_list_comprehension] = STATE(878), - [sym_dictionary_comprehension] = STATE(878), - [sym_set_comprehension] = STATE(878), - [sym_generator_expression] = STATE(878), - [sym_parenthesized_expression] = STATE(878), - [sym_concatenated_string] = STATE(878), - [sym_string] = STATE(766), - [sym_concatenated_template_string] = STATE(878), - [sym_template_string] = STATE(776), - [sym_await] = STATE(878), - [sym_identifier] = ACTIONS(612), - [anon_sym_lazy] = ACTIONS(614), + [sym_primary_expression] = STATE(747), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), + [sym_identifier] = ACTIONS(311), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(614), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_COLON_EQ] = ACTIONS(604), [anon_sym_if] = ACTIONS(272), - [anon_sym_async] = ACTIONS(614), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(272), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(614), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(293), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_exec] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -23892,7 +23934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(620), + [anon_sym_TILDE] = ACTIONS(606), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23901,61 +23943,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(626), - [anon_sym_COLON2] = ACTIONS(303), - [sym_type_conversion] = ACTIONS(303), - [sym_integer] = ACTIONS(612), - [sym_float] = ACTIONS(626), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_none] = ACTIONS(612), + [sym_ellipsis] = ACTIONS(309), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(309), + [anon_sym_await] = ACTIONS(610), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_none] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(630), - [sym__template_string_start] = ACTIONS(632), + [sym__string_start] = ACTIONS(315), + [sym__template_string_start] = ACTIONS(317), }, [STATE(150)] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), - [sym_identifier] = ACTIONS(311), + [sym_primary_expression] = STATE(799), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_attribute] = STATE(950), + [sym_subscript] = STATE(950), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), + [sym_identifier] = ACTIONS(79), [anon_sym_lazy] = ACTIONS(573), [anon_sym_DOT] = ACTIONS(272), + [anon_sym_from] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), [anon_sym_print] = ACTIONS(573), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(580), [anon_sym_if] = ACTIONS(272), [anon_sym_async] = ACTIONS(573), [anon_sym_in] = ACTIONS(272), [anon_sym_match] = ACTIONS(573), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(53), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(272), [anon_sym_exec] = ACTIONS(573), [anon_sym_type] = ACTIONS(573), [anon_sym_AT] = ACTIONS(303), @@ -23968,7 +24007,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_LT] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(272), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_is] = ACTIONS(272), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(581), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(303), + [sym__newline] = ACTIONS(303), + [sym__string_start] = ACTIONS(83), + [sym__template_string_start] = ACTIONS(85), + }, + [STATE(151)] = { + [sym_primary_expression] = STATE(808), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), + [sym_identifier] = ACTIONS(311), + [anon_sym_lazy] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(303), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_if] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(272), + [anon_sym_in] = ACTIONS(272), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_STAR_STAR] = ACTIONS(303), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(303), + [anon_sym_not] = ACTIONS(272), + [anon_sym_and] = ACTIONS(272), + [anon_sym_or] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(303), + [anon_sym_SLASH_SLASH] = ACTIONS(303), + [anon_sym_AMP] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(303), + [anon_sym_LT_LT] = ACTIONS(303), + [anon_sym_TILDE] = ACTIONS(640), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -23980,7 +24095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(590), + [anon_sym_await] = ACTIONS(644), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -23988,50 +24103,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), [sym__template_string_start] = ACTIONS(317), }, - [STATE(151)] = { - [sym_primary_expression] = STATE(835), - [sym_binary_operator] = STATE(970), - [sym_unary_operator] = STATE(970), - [sym_attribute] = STATE(970), - [sym_subscript] = STATE(970), - [sym_call] = STATE(970), - [sym_list] = STATE(970), - [sym_set] = STATE(970), - [sym_tuple] = STATE(970), - [sym_dictionary] = STATE(970), - [sym_list_comprehension] = STATE(970), - [sym_dictionary_comprehension] = STATE(970), - [sym_set_comprehension] = STATE(970), - [sym_generator_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(970), - [sym_concatenated_string] = STATE(970), - [sym_string] = STATE(793), - [sym_concatenated_template_string] = STATE(970), - [sym_template_string] = STATE(794), - [sym_await] = STATE(970), - [sym_identifier] = ACTIONS(636), - [anon_sym_lazy] = ACTIONS(638), + [STATE(152)] = { + [sym_primary_expression] = STATE(839), + [sym_binary_operator] = STATE(985), + [sym_unary_operator] = STATE(985), + [sym_attribute] = STATE(985), + [sym_subscript] = STATE(985), + [sym_call] = STATE(985), + [sym_list] = STATE(985), + [sym_set] = STATE(985), + [sym_tuple] = STATE(985), + [sym_dictionary] = STATE(985), + [sym_list_comprehension] = STATE(985), + [sym_dictionary_comprehension] = STATE(985), + [sym_set_comprehension] = STATE(985), + [sym_generator_expression] = STATE(985), + [sym_parenthesized_expression] = STATE(985), + [sym_concatenated_string] = STATE(985), + [sym_string] = STATE(790), + [sym_concatenated_template_string] = STATE(985), + [sym_template_string] = STATE(791), + [sym_await] = STATE(985), + [sym_identifier] = ACTIONS(646), + [anon_sym_lazy] = ACTIONS(648), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(650), [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_as] = ACTIONS(272), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(638), + [anon_sym_print] = ACTIONS(648), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_if] = ACTIONS(272), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_async] = ACTIONS(638), + [anon_sym_async] = ACTIONS(648), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(638), + [anon_sym_match] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), + [anon_sym_exec] = ACTIONS(648), + [anon_sym_type] = ACTIONS(648), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -24042,7 +24157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(654), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -24051,61 +24166,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(272), [anon_sym_LT_GT] = ACTIONS(303), [anon_sym_is] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(650), - [sym_integer] = ACTIONS(636), - [sym_float] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_none] = ACTIONS(636), + [sym_ellipsis] = ACTIONS(660), + [sym_integer] = ACTIONS(646), + [sym_float] = ACTIONS(660), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_none] = ACTIONS(646), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(654), - [sym__template_string_start] = ACTIONS(656), + [sym__string_start] = ACTIONS(664), + [sym__template_string_start] = ACTIONS(666), }, - [STATE(152)] = { - [sym_primary_expression] = STATE(784), - [sym_binary_operator] = STATE(725), - [sym_unary_operator] = STATE(725), - [sym_attribute] = STATE(725), - [sym_subscript] = STATE(725), - [sym_call] = STATE(725), - [sym_list] = STATE(725), - [sym_set] = STATE(725), - [sym_tuple] = STATE(725), - [sym_dictionary] = STATE(725), - [sym_list_comprehension] = STATE(725), - [sym_dictionary_comprehension] = STATE(725), - [sym_set_comprehension] = STATE(725), - [sym_generator_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string] = STATE(645), - [sym_concatenated_template_string] = STATE(725), - [sym_template_string] = STATE(658), - [sym_await] = STATE(725), + [STATE(153)] = { + [sym_primary_expression] = STATE(766), + [sym_binary_operator] = STATE(720), + [sym_unary_operator] = STATE(720), + [sym_attribute] = STATE(720), + [sym_subscript] = STATE(720), + [sym_call] = STATE(720), + [sym_list] = STATE(720), + [sym_set] = STATE(720), + [sym_tuple] = STATE(720), + [sym_dictionary] = STATE(720), + [sym_list_comprehension] = STATE(720), + [sym_dictionary_comprehension] = STATE(720), + [sym_set_comprehension] = STATE(720), + [sym_generator_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string] = STATE(694), + [sym_concatenated_template_string] = STATE(720), + [sym_template_string] = STATE(698), + [sym_await] = STATE(720), [sym_identifier] = ACTIONS(311), - [anon_sym_lazy] = ACTIONS(573), + [anon_sym_lazy] = ACTIONS(583), [anon_sym_DOT] = ACTIONS(272), - [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(303), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(272), - [anon_sym_print] = ACTIONS(573), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_COLON_EQ] = ACTIONS(590), [anon_sym_if] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_async] = ACTIONS(573), - [anon_sym_for] = ACTIONS(272), + [anon_sym_async] = ACTIONS(583), [anon_sym_in] = ACTIONS(272), - [anon_sym_match] = ACTIONS(573), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(596), [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(573), - [anon_sym_type] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(272), [anon_sym_and] = ACTIONS(272), @@ -24116,7 +24231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(303), [anon_sym_CARET] = ACTIONS(303), [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(301), [anon_sym_LT] = ACTIONS(272), [anon_sym_LT_EQ] = ACTIONS(303), [anon_sym_EQ_EQ] = ACTIONS(303), @@ -24128,7 +24243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(309), [sym_integer] = ACTIONS(311), [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(666), + [anon_sym_await] = ACTIONS(600), [sym_true] = ACTIONS(311), [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), @@ -24136,46 +24251,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), [sym__template_string_start] = ACTIONS(317), }, - [STATE(153)] = { - [sym_named_expression] = STATE(1156), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_expression_list] = STATE(1570), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1179), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1570), - [sym_augmented_assignment] = STATE(1570), - [sym_pattern_list] = STATE(1026), - [sym__right_hand_side] = STATE(1570), - [sym_yield] = STATE(1570), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(154)] = { + [sym_named_expression] = STATE(1126), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_expression_list] = STATE(1586), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1586), + [sym_augmented_assignment] = STATE(1586), + [sym_pattern_list] = STATE(1030), + [sym__right_hand_side] = STATE(1586), + [sym_yield] = STATE(1586), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(319), [anon_sym_LPAREN] = ACTIONS(15), @@ -24205,46 +24320,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(154)] = { - [sym_named_expression] = STATE(1156), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_expression_list] = STATE(1516), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1179), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1516), - [sym_augmented_assignment] = STATE(1516), - [sym_pattern_list] = STATE(1026), - [sym__right_hand_side] = STATE(1516), - [sym_yield] = STATE(1516), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(155)] = { + [sym_named_expression] = STATE(1126), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_expression_list] = STATE(1608), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1608), + [sym_augmented_assignment] = STATE(1608), + [sym_pattern_list] = STATE(1030), + [sym__right_hand_side] = STATE(1608), + [sym_yield] = STATE(1608), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(319), [anon_sym_LPAREN] = ACTIONS(15), @@ -24274,46 +24389,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(83), [sym__template_string_start] = ACTIONS(85), }, - [STATE(155)] = { - [sym_named_expression] = STATE(1156), - [sym_list_splat] = STATE(1520), - [sym_dictionary_splat] = STATE(1520), - [sym_expression_list] = STATE(1526), - [sym_pattern] = STATE(1017), - [sym_tuple_pattern] = STATE(1001), - [sym_list_pattern] = STATE(1001), - [sym_list_splat_pattern] = STATE(1001), - [sym_expression] = STATE(1179), - [sym_primary_expression] = STATE(765), - [sym_not_operator] = STATE(1156), - [sym_boolean_operator] = STATE(1156), - [sym_binary_operator] = STATE(920), - [sym_unary_operator] = STATE(920), - [sym_comparison_operator] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_assignment] = STATE(1526), - [sym_augmented_assignment] = STATE(1526), - [sym_pattern_list] = STATE(1026), - [sym__right_hand_side] = STATE(1526), - [sym_yield] = STATE(1526), - [sym_attribute] = STATE(582), - [sym_subscript] = STATE(582), - [sym_call] = STATE(920), - [sym_list] = STATE(920), - [sym_set] = STATE(920), - [sym_tuple] = STATE(920), - [sym_dictionary] = STATE(920), - [sym_list_comprehension] = STATE(920), - [sym_dictionary_comprehension] = STATE(920), - [sym_set_comprehension] = STATE(920), - [sym_generator_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_conditional_expression] = STATE(1156), - [sym_concatenated_string] = STATE(920), - [sym_string] = STATE(775), - [sym_concatenated_template_string] = STATE(920), - [sym_template_string] = STATE(769), - [sym_await] = STATE(920), + [STATE(156)] = { + [sym_named_expression] = STATE(1126), + [sym_list_splat] = STATE(1590), + [sym_dictionary_splat] = STATE(1590), + [sym_expression_list] = STATE(1610), + [sym_pattern] = STATE(1020), + [sym_tuple_pattern] = STATE(1005), + [sym_list_pattern] = STATE(1005), + [sym_list_splat_pattern] = STATE(1005), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(773), + [sym_not_operator] = STATE(1126), + [sym_boolean_operator] = STATE(1126), + [sym_binary_operator] = STATE(950), + [sym_unary_operator] = STATE(950), + [sym_comparison_operator] = STATE(1126), + [sym_lambda] = STATE(1126), + [sym_assignment] = STATE(1610), + [sym_augmented_assignment] = STATE(1610), + [sym_pattern_list] = STATE(1030), + [sym__right_hand_side] = STATE(1610), + [sym_yield] = STATE(1610), + [sym_attribute] = STATE(614), + [sym_subscript] = STATE(614), + [sym_call] = STATE(950), + [sym_list] = STATE(950), + [sym_set] = STATE(950), + [sym_tuple] = STATE(950), + [sym_dictionary] = STATE(950), + [sym_list_comprehension] = STATE(950), + [sym_dictionary_comprehension] = STATE(950), + [sym_set_comprehension] = STATE(950), + [sym_generator_expression] = STATE(950), + [sym_parenthesized_expression] = STATE(950), + [sym_conditional_expression] = STATE(1126), + [sym_concatenated_string] = STATE(950), + [sym_string] = STATE(779), + [sym_concatenated_template_string] = STATE(950), + [sym_template_string] = STATE(772), + [sym_await] = STATE(950), [sym_identifier] = ACTIONS(7), [anon_sym_lazy] = ACTIONS(319), [anon_sym_LPAREN] = ACTIONS(15), @@ -24346,7 +24461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 29, + [0] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24360,11 +24475,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(672), 1, anon_sym_LPAREN, ACTIONS(674), 1, - anon_sym_STAR, + anon_sym_RPAREN, ACTIONS(676), 1, - anon_sym_LBRACK, + anon_sym_STAR, ACTIONS(678), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, ACTIONS(682), 1, @@ -24373,38 +24488,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(686), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1084), 1, + STATE(1070), 1, sym_expression, - STATE(1311), 1, + STATE(1217), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1355), 1, sym_pattern, - STATE(1675), 1, - sym__patterns, - STATE(1693), 1, + STATE(1461), 1, + sym_yield, + STATE(1721), 1, sym__collection_elements, + STATE(1742), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, + STATE(917), 2, sym_attribute, sym_subscript, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -24417,14 +24534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24440,7 +24557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [123] = 30, + [127] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24453,9 +24570,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_STAR, ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, @@ -24467,36 +24584,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(688), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1086), 1, sym_expression, - STATE(1311), 1, + STATE(1202), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1355), 1, sym_pattern, - STATE(1479), 1, + STATE(1432), 1, sym_yield, - STATE(1689), 1, - sym__patterns, - STATE(1692), 1, + STATE(1686), 1, sym__collection_elements, + STATE(1742), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, + STATE(917), 2, sym_attribute, sym_subscript, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24512,14 +24630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24535,7 +24653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [248] = 31, + [254] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24548,9 +24666,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_STAR, ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, @@ -24561,38 +24679,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(686), 1, anon_sym_await, ACTIONS(690), 1, - anon_sym_RPAREN, - STATE(645), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1080), 1, sym_expression, - STATE(1311), 1, - sym_pattern, - STATE(1385), 1, + STATE(1204), 1, sym_list_splat, - STATE(1390), 1, - sym_parenthesized_list_splat, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, + STATE(1355), 1, + sym_pattern, + STATE(1657), 1, sym__collection_elements, - STATE(1689), 1, + STATE(1690), 1, sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, + STATE(917), 2, sym_attribute, sym_subscript, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24608,14 +24725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24631,47 +24748,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [375] = 23, + [379] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, + ACTIONS(668), 1, sym_identifier, - ACTIONS(696), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(676), 1, anon_sym_STAR, - ACTIONS(702), 1, - anon_sym_in, - ACTIONS(704), 1, + ACTIONS(678), 1, anon_sym_LBRACK, - ACTIONS(706), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(686), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(692), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(998), 1, - sym_pattern, - STATE(1013), 1, + STATE(705), 1, sym_primary_expression, + STATE(1095), 1, + sym_expression, + STATE(1218), 1, + sym_list_splat, + STATE(1355), 1, + sym_pattern, + STATE(1690), 1, + sym__patterns, + STATE(1692), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(584), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(848), 2, + STATE(917), 2, sym_attribute, sym_subscript, - STATE(1001), 3, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(606), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24680,30 +24813,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(694), 6, + ACTIONS(670), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(700), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - STATE(725), 15, + STATE(1037), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24719,7 +24843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [486] = 23, + [504] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24730,36 +24854,124 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, + ACTIONS(694), 1, sym_identifier, - ACTIONS(696), 1, - anon_sym_LPAREN, ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, anon_sym_STAR, ACTIONS(704), 1, + anon_sym_in, + ACTIONS(706), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1002), 1, + sym_pattern, + STATE(1017), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(594), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(842), 2, + sym_attribute, + sym_subscript, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(702), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [615] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(301), 1, + anon_sym_TILDE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, + anon_sym_STAR, ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, anon_sym_await, - ACTIONS(710), 1, + ACTIONS(712), 1, anon_sym_in, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(998), 1, + STATE(1002), 1, sym_pattern, - STATE(1013), 1, + STATE(1017), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(584), 2, + ACTIONS(594), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(848), 2, + STATE(842), 2, sym_attribute, sym_subscript, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24768,14 +24980,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(694), 6, + ACTIONS(696), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(708), 15, + ACTIONS(710), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -24791,7 +25003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24807,7 +25019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [597] = 29, + [726] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24820,9 +25032,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_STAR, ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, @@ -24832,40 +25044,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(686), 1, anon_sym_await, - ACTIONS(712), 1, + ACTIONS(714), 1, anon_sym_RBRACK, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1080), 1, sym_expression, - STATE(1311), 1, + STATE(1204), 1, + sym_list_splat, + STATE(1355), 1, sym_pattern, - STATE(1675), 1, - sym__patterns, - STATE(1716), 1, + STATE(1657), 1, sym__collection_elements, + STATE(1690), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, + STATE(917), 2, sym_attribute, sym_subscript, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -24878,14 +25091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24901,7 +25114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [720] = 30, + [851] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -24914,9 +25127,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_STAR, ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(678), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, @@ -24926,38 +25139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(686), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1086), 1, sym_expression, - STATE(1311), 1, + STATE(1187), 1, + sym_list_splat, + STATE(1355), 1, sym_pattern, - STATE(1395), 1, + STATE(1432), 1, sym_yield, - STATE(1680), 1, + STATE(1455), 1, + sym_parenthesized_list_splat, + STATE(1686), 1, sym__collection_elements, - STATE(1689), 1, + STATE(1742), 1, sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, + STATE(917), 2, sym_attribute, sym_subscript, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24973,14 +25187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24996,7 +25210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [845] = 29, + [978] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -25005,78 +25219,77 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(668), 1, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(718), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(722), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(724), 1, + anon_sym_COMMA, + ACTIONS(726), 1, anon_sym_STAR, - ACTIONS(676), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(728), 1, + anon_sym_RBRACE, + ACTIONS(730), 1, + anon_sym_STAR_STAR, + ACTIONS(732), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(734), 1, anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(686), 1, + ACTIONS(736), 1, anon_sym_await, - ACTIONS(716), 1, - anon_sym_RBRACK, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(775), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1047), 1, sym_expression, - STATE(1311), 1, - sym_pattern, - STATE(1675), 1, - sym__patterns, - STATE(1716), 1, + STATE(1203), 1, + sym_list_splat, + STATE(1727), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(872), 2, - sym_attribute, - sym_subscript, - ACTIONS(606), 3, + STATE(1207), 2, + sym_dictionary_splat, + sym_pair, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(670), 6, + ACTIONS(720), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -25090,18 +25303,16 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [968] = 29, + [1100] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(684), 1, anon_sym_yield, @@ -25109,43 +25320,45 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(722), 1, anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_COMMA, ACTIONS(726), 1, anon_sym_STAR, - ACTIONS(728), 1, - anon_sym_RBRACE, ACTIONS(730), 1, - anon_sym_not, + anon_sym_STAR_STAR, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(738), 1, + anon_sym_COMMA, + ACTIONS(740), 1, + anon_sym_RBRACE, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1059), 1, + STATE(1063), 1, sym_expression, - STATE(1199), 1, - sym_pair, - STATE(1432), 1, - sym_dictionary_splat, - STATE(1638), 1, + STATE(1206), 1, + sym_list_splat, + STATE(1624), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + STATE(1236), 2, + sym_dictionary_splat, + sym_pair, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -25158,14 +25371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25183,18 +25396,16 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1090] = 29, + [1222] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(684), 1, anon_sym_yield, @@ -25205,40 +25416,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(726), 1, anon_sym_STAR, ACTIONS(730), 1, - anon_sym_not, + anon_sym_STAR_STAR, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, - anon_sym_await, + anon_sym_lambda, ACTIONS(736), 1, + anon_sym_await, + ACTIONS(742), 1, anon_sym_COMMA, - ACTIONS(738), 1, + ACTIONS(744), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1055), 1, + STATE(1041), 1, sym_expression, - STATE(1214), 1, - sym_pair, - STATE(1426), 1, - sym_dictionary_splat, - STATE(1616), 1, + STATE(1232), 1, + sym_list_splat, + STATE(1666), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + STATE(1194), 2, + sym_dictionary_splat, + sym_pair, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -25251,14 +25464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25276,18 +25489,16 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1212] = 29, + [1344] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(684), 1, anon_sym_yield, @@ -25298,40 +25509,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(726), 1, anon_sym_STAR, ACTIONS(730), 1, - anon_sym_not, + anon_sym_STAR_STAR, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(746), 1, anon_sym_COMMA, - ACTIONS(742), 1, + ACTIONS(748), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1058), 1, + STATE(1067), 1, sym_expression, - STATE(1192), 1, - sym_pair, - STATE(1407), 1, - sym_dictionary_splat, - STATE(1708), 1, + STATE(1228), 1, + sym_list_splat, + STATE(1688), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + STATE(1184), 2, + sym_dictionary_splat, + sym_pair, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -25344,14 +25557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25369,82 +25582,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1334] = 29, + [1466] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_STAR_STAR, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(718), 1, + ACTIONS(750), 1, sym_identifier, - ACTIONS(722), 1, - anon_sym_LPAREN, - ACTIONS(726), 1, + ACTIONS(754), 1, + anon_sym_from, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(730), 1, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(732), 1, + ACTIONS(762), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(744), 1, - anon_sym_COMMA, - ACTIONS(746), 1, - anon_sym_RBRACE, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, STATE(780), 1, sym_primary_expression, - STATE(1041), 1, + STATE(781), 1, + sym_string, + STATE(782), 1, + sym_template_string, + STATE(1107), 1, sym_expression, - STATE(1170), 1, - sym_pair, - STATE(1505), 1, - sym_dictionary_splat, - STATE(1684), 1, - sym__collection_elements, - ACTIONS(309), 2, + STATE(1237), 1, + sym_expression_list, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + STATE(1588), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 6, + ACTIONS(758), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25462,7 +25671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1456] = 26, + [1581] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -25479,30 +25688,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(748), 1, + ACTIONS(766), 1, anon_sym_from, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1144), 1, + STATE(1175), 1, sym_expression, - STATE(1186), 1, + STATE(1237), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1518), 2, + STATE(1573), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -25514,7 +25723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(750), 4, + ACTIONS(758), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, @@ -25526,14 +25735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25551,78 +25760,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1571] = 26, + [1696] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_STAR_STAR, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(726), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_from, - ACTIONS(760), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1102), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1144), 1, sym_expression, - STATE(1186), 1, - sym_expression_list, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1568), 2, + STATE(1291), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(750), 4, + ACTIONS(770), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25640,7 +25846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1686] = 24, + [1806] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -25657,26 +25863,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1153), 1, + STATE(1144), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1262), 2, + STATE(1291), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -25688,7 +25894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(766), 5, + ACTIONS(770), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25701,14 +25907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25726,7 +25932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1796] = 24, + [1916] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -25743,26 +25949,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1153), 1, + STATE(1144), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1262), 2, + STATE(1291), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -25774,7 +25980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(768), 5, + ACTIONS(772), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25787,14 +25993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25812,75 +26018,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1906] = 24, + [2026] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(774), 1, + anon_sym_STAR, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1153), 1, + STATE(1120), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1262), 2, + STATE(1301), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(766), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(772), 4, anon_sym_RBRACE, - ACTIONS(270), 6, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25898,75 +26103,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2016] = 25, + [2135] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym__string_start, - ACTIONS(632), 1, - sym__template_string_start, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(754), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_not, - ACTIONS(762), 1, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(770), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_yield, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1096), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1179), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1568), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1291), 3, - sym_expression_list, + ACTIONS(780), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1354), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - sym__f_expression, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25984,76 +26188,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2127] = 26, + [2244] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LPAREN, ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(780), 1, - anon_sym_COMMA, + anon_sym_LPAREN, ACTIONS(782), 1, - anon_sym_await, - STATE(645), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1179), 1, sym_expression, - STATE(1440), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1439), 3, + ACTIONS(780), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1354), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(774), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26071,76 +26273,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2240] = 26, + [2353] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, ACTIONS(782), 1, - anon_sym_await, - ACTIONS(784), 1, - anon_sym_RPAREN, - ACTIONS(786), 1, - anon_sym_COMMA, - STATE(645), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1064), 1, + STATE(1179), 1, sym_expression, - STATE(1402), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1384), 3, + ACTIONS(780), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1354), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(774), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26158,74 +26358,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2353] = 24, + [2462] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(726), 1, + anon_sym_STAR, + ACTIONS(784), 1, + sym_identifier, ACTIONS(788), 1, anon_sym_LPAREN, + ACTIONS(790), 1, + anon_sym_RPAREN, ACTIONS(792), 1, - anon_sym_STAR, - STATE(645), 1, + anon_sym_COMMA, + ACTIONS(794), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1087), 1, sym_expression, + STATE(1212), 1, + sym_list_splat, + STATE(1490), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1486), 2, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(790), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1348), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(786), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26243,7 +26446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2462] = 26, + [2577] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26258,35 +26461,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(796), 1, anon_sym_from, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1195), 1, + STATE(1210), 1, sym_expression, - STATE(1533), 1, + STATE(1569), 1, sym_expression_list, ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(750), 2, + ACTIONS(758), 2, sym__newline, anon_sym_SEMI, - STATE(1520), 2, + STATE(1590), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(49), 3, @@ -26298,21 +26501,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26330,76 +26533,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2575] = 26, + [2690] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(796), 1, - anon_sym_from, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(1134), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1179), 1, sym_expression, - STATE(1458), 1, - sym_expression_list, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(798), 2, - sym__newline, - anon_sym_SEMI, - STATE(1520), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(798), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1354), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26417,76 +26618,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2688] = 26, + [2799] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, ACTIONS(726), 1, anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_not, + ACTIONS(784), 1, + sym_identifier, ACTIONS(788), 1, anon_sym_LPAREN, + ACTIONS(794), 1, + anon_sym_await, ACTIONS(800), 1, - sym_identifier, - ACTIONS(804), 1, anon_sym_RPAREN, - ACTIONS(806), 1, + ACTIONS(802), 1, anon_sym_COMMA, - ACTIONS(808), 1, - anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1232), 1, + STATE(1094), 1, sym_expression, - STATE(1393), 1, + STATE(1211), 1, + sym_list_splat, + STATE(1497), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1496), 2, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1387), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(786), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26504,75 +26706,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2801] = 25, + [2914] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_STAR_STAR, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(754), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(770), 1, - anon_sym_yield, - STATE(763), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(804), 1, + anon_sym_from, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(766), 1, + STATE(779), 1, sym_string, - STATE(776), 1, - sym_template_string, - STATE(1096), 1, + STATE(1137), 1, sym_expression, - ACTIONS(626), 2, + STATE(1446), 1, + sym_expression_list, + ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(1568), 2, + ACTIONS(806), 2, + sym__newline, + anon_sym_SEMI, + STATE(1590), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(620), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(612), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26590,74 +26793,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2912] = 24, + [3027] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, + ACTIONS(608), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(762), 1, + ACTIONS(682), 1, anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(810), 1, - anon_sym_STAR, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, + sym_identifier, ACTIONS(812), 1, - anon_sym_STAR_STAR, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + anon_sym_RPAREN, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1154), 1, + STATE(705), 1, + sym_primary_expression, + STATE(1048), 1, sym_expression, - ACTIONS(626), 2, + STATE(1226), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1447), 1, + sym_yield, + STATE(1484), 1, + sym_with_item, + STATE(1654), 1, + sym__collection_elements, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1266), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(620), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(768), 4, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - ACTIONS(756), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26675,9 +26882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3021] = 24, + [3144] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(616), 1, anon_sym_LPAREN, ACTIONS(622), 1, @@ -26688,61 +26897,60 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(750), 1, sym_identifier, + ACTIONS(756), 1, + anon_sym_STAR, ACTIONS(760), 1, anon_sym_not, ACTIONS(762), 1, anon_sym_lambda, ACTIONS(764), 1, anon_sym_await, - ACTIONS(810), 1, - anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_STAR_STAR, - STATE(763), 1, + ACTIONS(818), 1, + anon_sym_yield, + STATE(780), 1, sym_primary_expression, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(1154), 1, + STATE(1103), 1, sym_expression, ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1266), 2, + STATE(1588), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1296), 3, + sym_expression_list, + sym_yield, + sym__f_expression, ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(766), 4, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - ACTIONS(756), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26760,7 +26968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3130] = 24, + [3255] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -26773,7 +26981,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(750), 1, sym_identifier, ACTIONS(760), 1, anon_sym_not, @@ -26781,22 +26989,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(764), 1, anon_sym_await, - ACTIONS(810), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(776), 1, anon_sym_STAR_STAR, - STATE(763), 1, + STATE(780), 1, sym_primary_expression, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(1154), 1, + STATE(1120), 1, sym_expression, ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1266), 2, + STATE(1301), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(620), 3, @@ -26808,26 +27016,26 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(766), 4, + ACTIONS(770), 4, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - ACTIONS(756), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26845,74 +27053,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3239] = 24, + [3364] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(726), 1, + anon_sym_STAR, + ACTIONS(784), 1, + sym_identifier, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - STATE(645), 1, + ACTIONS(794), 1, + anon_sym_await, + ACTIONS(820), 1, + anon_sym_RPAREN, + ACTIONS(822), 1, + anon_sym_COMMA, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1093), 1, sym_expression, + STATE(1186), 1, + sym_list_splat, + STATE(1453), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1452), 2, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(814), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1348), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(786), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26930,74 +27141,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3348] = 24, + [3479] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(774), 1, anon_sym_STAR, - STATE(645), 1, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1193), 1, + STATE(1120), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1301), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(814), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1348), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(770), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27015,7 +27226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3457] = 26, + [3588] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -27034,57 +27245,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(726), 1, anon_sym_STAR, - ACTIONS(772), 1, + ACTIONS(784), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(782), 1, + ACTIONS(794), 1, anon_sym_await, - ACTIONS(804), 1, + ACTIONS(824), 1, anon_sym_RPAREN, - ACTIONS(806), 1, + ACTIONS(826), 1, anon_sym_COMMA, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1087), 1, + STATE(1075), 1, sym_expression, - STATE(1393), 1, + STATE(1196), 1, + sym_list_splat, + STATE(1469), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1482), 2, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1387), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(774), 6, + ACTIONS(786), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27102,77 +27314,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3570] = 27, + [3703] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(55), 1, + anon_sym_STAR_STAR, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(762), 1, anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_RPAREN, - ACTIONS(822), 1, + ACTIONS(764), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(818), 1, + anon_sym_yield, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(726), 1, - sym_primary_expression, - STATE(1057), 1, + STATE(1103), 1, sym_expression, - STATE(1404), 1, - sym_yield, - STATE(1484), 1, - sym_with_item, - STATE(1687), 1, - sym__collection_elements, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1290), 2, + STATE(1588), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + sym_dictionary_splat, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + STATE(1289), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27190,53 +27400,53 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3685] = 26, + [3814] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, - anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(782), 1, - anon_sym_await, - ACTIONS(824), 1, + ACTIONS(800), 1, anon_sym_RPAREN, - ACTIONS(826), 1, + ACTIONS(802), 1, anon_sym_COMMA, - STATE(645), 1, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1071), 1, + STATE(1258), 1, sym_expression, - STATE(1416), 1, + STATE(1497), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1415), 3, + STATE(1468), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27245,21 +27455,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(774), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27277,7 +27487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3798] = 25, + [3927] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -27290,29 +27500,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(828), 1, + ACTIONS(834), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -27321,7 +27531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27330,21 +27540,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27362,7 +27572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3908] = 23, + [4037] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -27371,63 +27581,67 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, ACTIONS(608), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, + ACTIONS(836), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1086), 1, sym_expression, + STATE(1187), 1, + sym_list_splat, + STATE(1432), 1, + sym_yield, + STATE(1455), 1, + sym_parenthesized_list_splat, + STATE(1686), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1173), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(830), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(832), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 5, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27445,74 +27659,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4014] = 25, + [4151] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(55), 1, + anon_sym_STAR_STAR, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - ACTIONS(836), 1, - anon_sym_from, ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(840), 1, - anon_sym_STAR_STAR, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(1212), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1321), 1, sym_expression, - ACTIONS(77), 2, + STATE(1540), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(768), 2, - sym__newline, - anon_sym_SEMI, - STATE(1317), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27530,74 +27744,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4124] = 25, + [4261] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(55), 1, + anon_sym_STAR_STAR, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(838), 1, + ACTIONS(756), 1, anon_sym_STAR, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_await, ACTIONS(840), 1, - anon_sym_STAR_STAR, - ACTIONS(842), 1, - anon_sym_from, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(1212), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1321), 1, sym_expression, - ACTIONS(77), 2, + STATE(1540), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(766), 2, - sym__newline, - anon_sym_SEMI, - STATE(1317), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27615,74 +27829,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4234] = 25, + [4371] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(55), 1, + anon_sym_STAR_STAR, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(838), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(840), 1, - anon_sym_STAR_STAR, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_await, ACTIONS(842), 1, - anon_sym_from, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(1212), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1321), 1, sym_expression, - ACTIONS(77), 2, + STATE(1540), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(766), 2, - sym__newline, - anon_sym_SEMI, - STATE(1317), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27700,72 +27914,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4344] = 23, + [4481] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, + ACTIONS(844), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1321), 1, sym_expression, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1173), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(844), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(846), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 5, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27783,13 +27999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4450] = 25, + [4591] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(71), 1, anon_sym_not, ACTIONS(73), 1, @@ -27798,33 +28012,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(846), 1, + anon_sym_from, + ACTIONS(848), 1, anon_sym_STAR, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1206), 1, + STATE(1219), 1, sym_expression, - STATE(1530), 1, - sym_expression_list, ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(848), 2, + ACTIONS(772), 2, sym__newline, anon_sym_SEMI, - STATE(1520), 2, + STATE(1393), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(49), 3, @@ -27836,21 +28052,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27868,75 +28084,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4560] = 26, + [4701] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(850), 1, + ACTIONS(852), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1321), 1, sym_expression, - STATE(1479), 1, - sym_yield, - STATE(1692), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27954,74 +28169,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4672] = 25, + [4811] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(852), 1, - anon_sym_RBRACK, - STATE(645), 1, + ACTIONS(854), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1084), 1, + STATE(1321), 1, sym_expression, - STATE(1693), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, + STATE(1539), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28039,76 +28254,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4782] = 27, + [4921] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(854), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1321), 1, sym_expression, - STATE(1385), 1, - sym_list_splat, - STATE(1390), 1, + STATE(1540), 1, sym_parenthesized_list_splat, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28126,75 +28339,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4896] = 26, + [5031] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(820), 1, - anon_sym_RPAREN, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(858), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1321), 1, sym_expression, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28212,7 +28424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5008] = 25, + [5141] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -28221,65 +28433,63 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, + ACTIONS(602), 1, + anon_sym_LPAREN, ACTIONS(608), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(856), 1, - anon_sym_RBRACK, - STATE(645), 1, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1097), 1, sym_expression, - STATE(1716), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1222), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + ACTIONS(860), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(862), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 5, anon_sym_lazy, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28297,74 +28507,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5118] = 25, + [5247] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(858), 1, - anon_sym_RPAREN, - STATE(645), 1, - sym_string, - STATE(658), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(866), 1, + anon_sym_from, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1280), 1, + STATE(779), 1, + sym_string, + STATE(1219), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(770), 2, + sym__newline, + anon_sym_SEMI, + STATE(1393), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28382,7 +28592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5228] = 25, + [5357] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -28395,29 +28605,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(860), 1, + ACTIONS(868), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28426,7 +28636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28435,21 +28645,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28467,7 +28677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5338] = 25, + [5467] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -28480,29 +28690,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(862), 1, + ACTIONS(870), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28511,7 +28721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28520,21 +28730,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28552,7 +28762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5448] = 25, + [5577] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -28565,29 +28775,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28596,7 +28806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28605,21 +28815,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28637,7 +28847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5558] = 25, + [5687] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -28650,29 +28860,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(866), 1, + ACTIONS(874), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28681,7 +28891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28690,21 +28900,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28722,74 +28932,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5668] = 25, + [5797] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(868), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(876), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1080), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, + STATE(1204), 1, + sym_list_splat, + STATE(1657), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28807,7 +29018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5778] = 23, + [5909] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -28816,63 +29027,67 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, ACTIONS(608), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, + ACTIONS(878), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1070), 1, sym_expression, + STATE(1217), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1461), 1, + sym_yield, + STATE(1721), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1173), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(870), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(872), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 5, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28890,7 +29105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5884] = 27, + [6023] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -28907,35 +29122,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(684), 1, anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, anon_sym_STAR, ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, anon_sym_await, - ACTIONS(874), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(880), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1095), 1, sym_expression, - STATE(1385), 1, + STATE(1218), 1, sym_list_splat, - STATE(1390), 1, - sym_parenthesized_list_splat, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, + STATE(1692), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, @@ -28945,21 +29159,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28977,74 +29191,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5998] = 25, + [6135] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(876), 1, - anon_sym_RPAREN, - STATE(645), 1, - sym_string, - STATE(658), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(866), 1, + anon_sym_from, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1280), 1, + STATE(779), 1, + sym_string, + STATE(1219), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(770), 2, + sym__newline, + anon_sym_SEMI, + STATE(1393), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29062,7 +29276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6108] = 25, + [6245] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -29079,57 +29293,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(684), 1, anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, anon_sym_STAR, ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, anon_sym_await, - ACTIONS(878), 1, + ACTIONS(882), 1, anon_sym_RBRACK, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1080), 1, sym_expression, - STATE(1716), 1, + STATE(1204), 1, + sym_list_splat, + STATE(1657), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29147,7 +29362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6218] = 27, + [6357] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -29164,31 +29379,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(684), 1, anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(820), 1, + ACTIONS(812), 1, anon_sym_RPAREN, - ACTIONS(822), 1, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1086), 1, sym_expression, - STATE(1385), 1, + STATE(1187), 1, sym_list_splat, - STATE(1390), 1, - sym_parenthesized_list_splat, - STATE(1395), 1, + STATE(1432), 1, sym_yield, - STATE(1680), 1, + STATE(1455), 1, + sym_parenthesized_list_splat, + STATE(1686), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -29202,21 +29417,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29234,7 +29449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6332] = 23, + [6471] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -29249,35 +29464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(834), 1, + ACTIONS(864), 1, anon_sym_lambda, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1097), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1173), 2, + STATE(1222), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(880), 3, + ACTIONS(884), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(882), 3, + ACTIONS(886), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -29286,20 +29501,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 5, + ACTIONS(810), 5, anon_sym_lazy, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29317,74 +29532,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6438] = 25, + [6577] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1086), 1, sym_expression, - STATE(1524), 1, + STATE(1187), 1, + sym_list_splat, + STATE(1432), 1, + sym_yield, + STATE(1455), 1, sym_parenthesized_list_splat, + STATE(1686), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29402,7 +29619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6548] = 25, + [6691] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -29415,29 +29632,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(886), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29446,7 +29663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29455,21 +29672,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29487,7 +29704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6658] = 25, + [6801] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -29500,29 +29717,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(888), 1, + ACTIONS(892), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29531,7 +29748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29540,21 +29757,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29572,7 +29789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6768] = 25, + [6911] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -29585,29 +29802,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(890), 1, + ACTIONS(894), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29616,7 +29833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29625,21 +29842,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29657,7 +29874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6878] = 25, + [7021] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -29670,29 +29887,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(892), 1, + ACTIONS(896), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29701,7 +29918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29710,21 +29927,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29742,75 +29959,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6988] = 26, + [7131] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(854), 1, + ACTIONS(898), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1321), 1, sym_expression, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29828,74 +30044,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7100] = 25, + [7241] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(894), 1, - anon_sym_RBRACK, - STATE(645), 1, + ACTIONS(900), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1321), 1, sym_expression, - STATE(1626), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, + STATE(1539), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29913,74 +30129,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7210] = 25, + [7351] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(896), 1, + ACTIONS(888), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1086), 1, sym_expression, - STATE(1524), 1, + STATE(1202), 1, + sym_list_splat, + STATE(1294), 1, sym_parenthesized_list_splat, + STATE(1432), 1, + sym_yield, + STATE(1686), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29998,74 +30216,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7320] = 25, + [7465] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(898), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1092), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, + STATE(1230), 1, + sym_list_splat, + STATE(1658), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30083,74 +30302,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7430] = 25, + [7577] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(900), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1097), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1222), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(904), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(906), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 5, anon_sym_lazy, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30168,7 +30385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7540] = 25, + [7683] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -30181,29 +30398,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(902), 1, + ACTIONS(908), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30212,7 +30429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30221,21 +30438,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30253,7 +30470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7650] = 25, + [7793] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -30266,29 +30483,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(800), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(904), 1, + ACTIONS(910), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1321), 1, sym_expression, - STATE(1524), 1, + STATE(1540), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30297,7 +30514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, + STATE(1539), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30306,21 +30523,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30338,75 +30555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7760] = 26, + [7903] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(874), 1, + ACTIONS(912), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1321), 1, sym_expression, - STATE(1395), 1, - sym_yield, - STATE(1680), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30424,7 +30640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7872] = 25, + [8013] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -30433,65 +30649,63 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, + ACTIONS(602), 1, + anon_sym_LPAREN, ACTIONS(608), 1, anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(894), 1, - anon_sym_RBRACK, - STATE(645), 1, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1079), 1, + STATE(1097), 1, sym_expression, - STATE(1716), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1222), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + ACTIONS(914), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(916), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 5, anon_sym_lazy, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30509,75 +30723,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7982] = 26, + [8119] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(820), 1, - anon_sym_RPAREN, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(918), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1090), 1, + STATE(1321), 1, sym_expression, - STATE(1404), 1, - sym_yield, - STATE(1687), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1539), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30595,74 +30808,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8094] = 25, + [8229] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(832), 1, anon_sym_await, - ACTIONS(856), 1, - anon_sym_RBRACK, - STATE(645), 1, + ACTIONS(920), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1085), 1, + STATE(1321), 1, sym_expression, - STATE(1698), 1, - sym__collection_elements, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1290), 3, + STATE(1539), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30680,74 +30893,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8204] = 25, + [8339] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(906), 1, + ACTIONS(836), 1, anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1086), 1, sym_expression, - STATE(1524), 1, + STATE(1202), 1, + sym_list_splat, + STATE(1294), 1, sym_parenthesized_list_splat, + STATE(1432), 1, + sym_yield, + STATE(1686), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30765,74 +30980,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8314] = 25, + [8453] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(908), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1080), 1, sym_expression, - STATE(1524), 1, - sym_parenthesized_list_splat, + STATE(1204), 1, + sym_list_splat, + STATE(1657), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30850,7 +31066,92 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8424] = 26, + [8565] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + anon_sym_STAR_STAR, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, + sym__string_start, + ACTIONS(85), 1, + sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_STAR, + STATE(772), 1, + sym_template_string, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, + sym_string, + STATE(1235), 1, + sym_expression, + STATE(1591), 1, + sym_expression_list, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(922), 2, + sym__newline, + anon_sym_SEMI, + STATE(1590), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(49), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(79), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(363), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1126), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(950), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [8675] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -30867,34 +31168,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(684), 1, anon_sym_yield, - ACTIONS(776), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_RPAREN, + ACTIONS(814), 1, anon_sym_STAR, ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, anon_sym_await, - ACTIONS(854), 1, - anon_sym_RPAREN, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1070), 1, + STATE(1074), 1, sym_expression, - STATE(1430), 1, + STATE(1226), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1447), 1, sym_yield, - STATE(1618), 1, + STATE(1654), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1290), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30904,21 +31206,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30936,72 +31238,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8536] = 24, + [8789] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, anon_sym_STAR, - ACTIONS(910), 1, - anon_sym_COLON, - ACTIONS(912), 1, + ACTIONS(816), 1, + anon_sym_await, + ACTIONS(876), 1, anon_sym_RBRACK, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1090), 1, sym_expression, + STATE(1227), 1, + sym_list_splat, + STATE(1669), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1294), 2, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1515), 3, - sym_list_splat, - sym__index_expression, - sym_slice, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31019,72 +31324,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8643] = 24, + [8901] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_RPAREN, + ACTIONS(814), 1, anon_sym_STAR, - ACTIONS(910), 1, - anon_sym_COLON, - STATE(645), 1, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1086), 1, sym_expression, - STATE(1696), 1, - sym_index_expression_list, + STATE(1202), 1, + sym_list_splat, + STATE(1294), 1, + sym_parenthesized_list_splat, + STATE(1432), 1, + sym_yield, + STATE(1686), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1394), 3, - sym_list_splat, - sym__index_expression, - sym_slice, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31102,72 +31411,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8750] = 24, + [9015] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(684), 1, + anon_sym_yield, ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(800), 1, - sym_identifier, ACTIONS(808), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(888), 1, + anon_sym_RPAREN, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1280), 1, + STATE(1084), 1, sym_expression, - STATE(1524), 1, + STATE(1229), 1, + sym_list_splat, + STATE(1294), 1, sym_parenthesized_list_splat, + STATE(1464), 1, + sym_yield, + STATE(1655), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1567), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(802), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31185,7 +31498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8857] = 24, + [9129] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31200,26 +31513,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(910), 1, + ACTIONS(924), 1, anon_sym_COLON, - ACTIONS(914), 1, - anon_sym_RBRACK, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1246), 1, sym_expression, + STATE(1614), 1, + sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, @@ -31227,7 +31540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1515), 3, + STATE(1454), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -31243,14 +31556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31268,66 +31581,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8964] = 18, + [9236] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_await, - STATE(645), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(924), 1, + anon_sym_COLON, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(741), 1, + STATE(704), 1, sym_primary_expression, + STATE(1246), 1, + sym_expression, + STATE(1694), 1, + sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(272), 3, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(916), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(311), 5, + STATE(1470), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(303), 9, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(725), 17, + STATE(1037), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31345,7 +31664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9059] = 24, + [9343] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31360,25 +31679,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, ACTIONS(684), 1, anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(814), 1, + ACTIONS(780), 1, anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1179), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -31387,7 +31706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1348), 3, + STATE(1354), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31403,14 +31722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31428,7 +31747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9166] = 24, + [9450] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31443,25 +31762,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(910), 1, + ACTIONS(924), 1, anon_sym_COLON, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1246), 1, sym_expression, - STATE(1594), 1, + STATE(1660), 1, sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, @@ -31470,7 +31789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1405), 3, + STATE(1501), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -31486,14 +31805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31511,7 +31830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9273] = 24, + [9557] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31526,26 +31845,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(645), 1, + ACTIONS(924), 1, + anon_sym_COLON, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1246), 1, sym_expression, + STATE(1735), 1, + sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, @@ -31553,10 +31872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1348), 3, + STATE(1518), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym__index_expression, + sym_slice, ACTIONS(311), 4, sym_integer, sym_true, @@ -31569,14 +31888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31594,7 +31913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9380] = 24, + [9664] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31609,26 +31928,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(910), 1, + ACTIONS(924), 1, anon_sym_COLON, - STATE(645), 1, + ACTIONS(926), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1246), 1, sym_expression, - STATE(1608), 1, - sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, @@ -31636,7 +31955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1417), 3, + STATE(1535), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -31652,14 +31971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31677,72 +31996,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9487] = 24, + [9771] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(792), 1, - anon_sym_STAR, - ACTIONS(910), 1, - anon_sym_COLON, - STATE(645), 1, + ACTIONS(600), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(766), 1, sym_primary_expression, - STATE(1236), 1, - sym_expression, - STATE(1681), 1, - sym_index_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, + ACTIONS(272), 3, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1442), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(311), 4, + ACTIONS(928), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(311), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(725), 17, + ACTIONS(303), 9, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31760,7 +32073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9594] = 23, + [9866] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -31775,23 +32088,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(586), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(684), 1, - anon_sym_yield, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(788), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + ACTIONS(924), 1, + anon_sym_COLON, + ACTIONS(930), 1, + anon_sym_RBRACK, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1246), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -31800,10 +32115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1348), 3, + STATE(1535), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym__index_expression, + sym_slice, ACTIONS(311), 4, sym_integer, sym_true, @@ -31816,14 +32131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31841,39 +32156,41 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9698] = 23, + [9973] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(792), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(910), 1, - anon_sym_COLON, - STATE(645), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1321), 1, sym_expression, + STATE(1540), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, @@ -31881,30 +32198,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1515), 3, + STATE(1539), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(830), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31922,71 +32239,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9802] = 24, + [10080] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_STAR_STAR, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1246), 1, + STATE(779), 1, + sym_string, + STATE(1239), 1, sym_expression, - STATE(1632), 1, + STATE(1554), 1, sym_expression_list, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(1518), 2, + STATE(1590), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32004,7 +32321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9908] = 24, + [10186] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32021,28 +32338,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1241), 1, + STATE(1265), 1, sym_expression, - STATE(1649), 1, + STATE(1645), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1518), 2, + STATE(1573), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -32061,96 +32378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10014] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, - sym__string_start, - ACTIONS(85), 1, - sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, - sym_string, - STATE(1207), 1, - sym_expression, - STATE(1571), 1, - sym_expression_list, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - STATE(1520), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(49), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(79), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(351), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32168,7 +32403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10120] = 24, + [10292] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32185,28 +32420,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(756), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1238), 1, + STATE(1279), 1, sym_expression, - STATE(1621), 1, + STATE(1687), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1518), 2, + STATE(1573), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -32225,14 +32460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32250,11 +32485,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10226] = 24, + [10398] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(268), 1, sym_identifier, ACTIONS(293), 1, @@ -32267,34 +32500,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(684), 1, + anon_sym_yield, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1179), 1, sym_expression, - STATE(1614), 1, - sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1518), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1354), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -32307,14 +32541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32332,7 +32566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10332] = 23, + [10502] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32349,28 +32583,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(918), 1, - anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1253), 1, sym_expression, + STATE(1636), 1, + sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1573), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32387,14 +32623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32412,11 +32648,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10435] = 23, + [10608] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(268), 1, sym_identifier, ACTIONS(293), 1, @@ -32429,32 +32663,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(920), 1, - anon_sym_RBRACE, - STATE(645), 1, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(924), 1, + anon_sym_COLON, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1246), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1535), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(311), 4, sym_integer, sym_true, @@ -32467,14 +32704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32492,7 +32729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10538] = 23, + [10712] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32509,28 +32746,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(922), 1, - anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1250), 1, sym_expression, + STATE(1629), 1, + sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1573), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32547,14 +32786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32572,149 +32811,69 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10641] = 23, + [10818] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(924), 1, - anon_sym_RBRACE, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1313), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1569), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(270), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1032), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10744] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(926), 1, - anon_sym_RBRACE, - STATE(645), 1, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(774), 1, + anon_sym_STAR, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1313), 1, + STATE(1120), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1301), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32732,7 +32891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10847] = 23, + [10921] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32745,30 +32904,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(838), 1, + ACTIONS(848), 1, anon_sym_STAR, - ACTIONS(840), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1212), 1, + STATE(1219), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(1317), 2, + STATE(1393), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(49), 3, @@ -32780,21 +32939,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32812,7 +32971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10950] = 23, + [11024] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32829,28 +32988,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(756), 1, + anon_sym_STAR, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(928), 1, - anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1144), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1291), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32867,94 +33026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [11053] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym__string_start, - ACTIONS(632), 1, - sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, - anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(810), 1, - anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_STAR_STAR, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, - sym_string, - STATE(776), 1, - sym_template_string, - STATE(1154), 1, - sym_expression, - ACTIONS(626), 2, - sym_ellipsis, - sym_float, - STATE(1266), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(620), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(612), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(756), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32972,7 +33051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11156] = 23, + [11127] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -32989,26 +33068,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(930), 1, + ACTIONS(932), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33027,14 +33106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33052,7 +33131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11259] = 23, + [11230] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33069,26 +33148,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(932), 1, + ACTIONS(934), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33107,14 +33186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33132,7 +33211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11362] = 23, + [11333] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33149,26 +33228,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(934), 1, + ACTIONS(936), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33187,14 +33266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33212,7 +33291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11465] = 23, + [11436] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33229,26 +33308,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(936), 1, + ACTIONS(938), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33267,14 +33346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33292,7 +33371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11568] = 23, + [11539] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33309,26 +33388,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(938), 1, + ACTIONS(940), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33347,14 +33426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33372,7 +33451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11671] = 23, + [11642] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33389,28 +33468,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(942), 1, + anon_sym_RBRACE, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1153), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1262), 2, - sym_list_splat, + STATE(1567), 2, sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33427,14 +33506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33452,7 +33531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11774] = 23, + [11745] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -33469,26 +33548,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(940), 1, + ACTIONS(944), 1, anon_sym_RBRACE, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1395), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, + STATE(1567), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33507,14 +33586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33532,9 +33611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11877] = 23, + [11848] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(268), 1, sym_identifier, ACTIONS(293), 1, @@ -33547,29 +33628,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, - anon_sym_STAR, - STATE(645), 1, + ACTIONS(946), 1, + anon_sym_RBRACE, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1395), 1, sym_expression, - STATE(1344), 1, - sym_list_splat, - STATE(1609), 1, - sym_type, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1567), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33586,14 +33666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33611,9 +33691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11979] = 23, + [11951] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(55), 1, + anon_sym_STAR_STAR, ACTIONS(268), 1, sym_identifier, ACTIONS(293), 1, @@ -33626,29 +33708,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, - anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1395), 1, sym_expression, - STATE(1344), 1, - sym_list_splat, - STATE(1647), 1, - sym_type, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1567), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33665,14 +33744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33690,23 +33769,23 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12081] = 9, + [12051] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, + ACTIONS(952), 1, anon_sym_else, - ACTIONS(948), 1, + ACTIONS(954), 1, anon_sym_except, - ACTIONS(950), 1, + ACTIONS(956), 1, anon_sym_finally, - STATE(479), 1, + STATE(480), 1, sym_else_clause, - STATE(520), 1, + STATE(554), 1, sym_finally_clause, - STATE(333), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(944), 13, + STATE(331), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(950), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -33720,7 +33799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(942), 34, + ACTIONS(948), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -33755,170 +33834,26 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12155] = 23, + [12125] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, ACTIONS(952), 1, - sym_identifier, - ACTIONS(956), 1, - anon_sym_STAR, - ACTIONS(958), 1, - anon_sym_COLON, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, - sym_string, - STATE(794), 1, - sym_template_string, - STATE(1210), 1, - sym_expression, - STATE(1562), 1, - sym_exception_list, - ACTIONS(650), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(636), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(954), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1211), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(970), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12257] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, anon_sym_else, - ACTIONS(968), 1, + ACTIONS(954), 1, anon_sym_except, - ACTIONS(970), 1, - anon_sym_finally, - STATE(478), 1, - sym_else_clause, - STATE(607), 1, - sym_finally_clause, - STATE(316), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(944), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(942), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12331] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, - anon_sym_else, - ACTIONS(970), 1, + ACTIONS(956), 1, anon_sym_finally, - ACTIONS(972), 1, - anon_sym_except, - STATE(478), 1, + STATE(484), 1, sym_else_clause, - STATE(607), 1, + STATE(572), 1, sym_finally_clause, - STATE(317), 2, + STATE(331), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(944), 13, + ACTIONS(960), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33929,7 +33864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(942), 34, + ACTIONS(958), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -33964,7 +33899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12405] = 22, + [12199] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -33979,28 +33914,29 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(976), 1, - anon_sym_COLON, - STATE(645), 1, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1256), 1, + STATE(1231), 1, sym_expression, + STATE(1333), 1, + sym_type, + STATE(1358), 1, + sym_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(974), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34017,14 +33953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34042,263 +33978,147 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12505] = 9, + [12301] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - ACTIONS(950), 1, - anon_sym_finally, - ACTIONS(978), 1, - anon_sym_except, - STATE(479), 1, - sym_else_clause, - STATE(520), 1, - sym_finally_clause, - STATE(334), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(944), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(53), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(942), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(71), 1, anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12579] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, - anon_sym_else, - ACTIONS(968), 1, - anon_sym_except, - ACTIONS(970), 1, - anon_sym_finally, - STATE(484), 1, - sym_else_clause, - STATE(569), 1, - sym_finally_clause, - STATE(316), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(980), 13, + ACTIONS(83), 1, sym__string_start, + ACTIONS(85), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, + ACTIONS(575), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(579), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(962), 1, + anon_sym_STAR, + STATE(772), 1, + sym_template_string, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, + sym_string, + STATE(1271), 1, + sym_expression, + STATE(1436), 1, + sym_type, + STATE(1529), 1, + sym_list_splat, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(982), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(49), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(79), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [12653] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(946), 1, - anon_sym_else, - ACTIONS(948), 1, - anon_sym_except, - ACTIONS(950), 1, - anon_sym_finally, - STATE(466), 1, - sym_else_clause, - STATE(534), 1, - sym_finally_clause, - STATE(333), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(980), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(982), 34, + ACTIONS(363), 6, anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12727] = 23, + STATE(1126), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(950), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12403] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(792), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(968), 1, anon_sym_STAR, - STATE(645), 1, + ACTIONS(970), 1, + anon_sym_COLON, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1201), 1, + STATE(1177), 1, sym_expression, - STATE(1344), 1, - sym_list_splat, - STATE(1688), 1, - sym_type, - ACTIONS(309), 2, + STATE(1594), 1, + sym_exception_list, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34316,7 +34136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12829] = 23, + [12505] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -34331,25 +34151,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1703), 1, + STATE(1643), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -34370,14 +34190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34395,23 +34215,23 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12931] = 9, + [12607] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(978), 1, anon_sym_else, - ACTIONS(970), 1, - anon_sym_finally, - ACTIONS(972), 1, + ACTIONS(980), 1, anon_sym_except, - STATE(484), 1, + ACTIONS(982), 1, + anon_sym_finally, + STATE(481), 1, sym_else_clause, - STATE(569), 1, + STATE(557), 1, sym_finally_clause, - STATE(317), 2, + STATE(315), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(980), 13, + ACTIONS(950), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -34425,7 +34245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(982), 34, + ACTIONS(948), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -34460,68 +34280,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13005] = 23, + [12681] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - ACTIONS(984), 1, + ACTIONS(782), 1, anon_sym_STAR, - ACTIONS(986), 1, - anon_sym_COLON, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1203), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1231), 1, sym_expression, - STATE(1548), 1, - sym_exception_list, - ACTIONS(650), 2, + STATE(1358), 1, + sym_list_splat, + STATE(1494), 1, + sym_type, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34539,7 +34359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13107] = 23, + [12783] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -34554,25 +34374,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1634), 1, + STATE(1715), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -34593,14 +34413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34618,23 +34438,23 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13209] = 9, + [12885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, + ACTIONS(952), 1, anon_sym_else, - ACTIONS(950), 1, + ACTIONS(956), 1, anon_sym_finally, - ACTIONS(978), 1, + ACTIONS(984), 1, anon_sym_except, - STATE(466), 1, + STATE(484), 1, sym_else_clause, - STATE(534), 1, + STATE(572), 1, sym_finally_clause, - STATE(334), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(980), 13, + STATE(324), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(960), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -34648,7 +34468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(982), 34, + ACTIONS(958), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -34683,11 +34503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13283] = 22, + [12959] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_STAR_STAR, ACTIONS(268), 1, sym_identifier, ACTIONS(293), 1, @@ -34700,26 +34518,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(988), 1, + anon_sym_COLON, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1313), 1, + STATE(1264), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1569), 2, - sym_dictionary_splat, - sym_pair, + ACTIONS(986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34736,14 +34556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34761,68 +34581,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13383] = 23, + [13059] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + ACTIONS(990), 1, anon_sym_STAR, - STATE(645), 1, + ACTIONS(992), 1, + anon_sym_COLON, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1201), 1, + STATE(1208), 1, sym_expression, - STATE(1325), 1, - sym_type, - STATE(1344), 1, - sym_list_splat, - ACTIONS(309), 2, + STATE(1547), 1, + sym_exception_list, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34840,7 +34660,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13485] = 22, + [13161] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(982), 1, + anon_sym_finally, + ACTIONS(994), 1, + anon_sym_except, + STATE(481), 1, + sym_else_clause, + STATE(557), 1, + sym_finally_clause, + STATE(314), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(950), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(948), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13235] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -34855,26 +34740,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(990), 1, + ACTIONS(998), 1, anon_sym_COLON, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1223), 1, + STATE(1244), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(988), 2, + ACTIONS(996), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(301), 3, @@ -34893,14 +34778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34918,68 +34803,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13585] = 23, + [13335] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(992), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(782), 1, anon_sym_STAR, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(1243), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1231), 1, sym_expression, - STATE(1392), 1, - sym_type, - STATE(1451), 1, + STATE(1358), 1, sym_list_splat, - ACTIONS(77), 2, + STATE(1630), 1, + sym_type, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34997,7 +34882,202 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13687] = 23, + [13437] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(982), 1, + anon_sym_finally, + ACTIONS(994), 1, + anon_sym_except, + STATE(476), 1, + sym_else_clause, + STATE(537), 1, + sym_finally_clause, + STATE(314), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(960), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13511] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(980), 1, + anon_sym_except, + ACTIONS(982), 1, + anon_sym_finally, + STATE(476), 1, + sym_else_clause, + STATE(537), 1, + sym_finally_clause, + STATE(315), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(960), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13585] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_else, + ACTIONS(956), 1, + anon_sym_finally, + ACTIONS(984), 1, + anon_sym_except, + STATE(480), 1, + sym_else_clause, + STATE(554), 1, + sym_finally_clause, + STATE(324), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(950), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(948), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13659] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -35012,25 +35092,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1389), 1, + STATE(1747), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -35051,14 +35131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35076,7 +35156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13789] = 23, + [13761] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -35091,25 +35171,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1627), 1, + STATE(1642), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -35130,14 +35210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35155,7 +35235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13891] = 23, + [13863] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -35170,25 +35250,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1629), 1, + STATE(1644), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -35209,14 +35289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35234,7 +35314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13993] = 23, + [13965] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -35249,25 +35329,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, + ACTIONS(782), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1201), 1, + STATE(1231), 1, sym_expression, - STATE(1344), 1, + STATE(1358), 1, sym_list_splat, - STATE(1633), 1, + STATE(1648), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -35288,14 +35368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35313,65 +35393,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14095] = 21, + [14067] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(768), 1, + anon_sym_not, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(1240), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1231), 1, sym_expression, - ACTIONS(77), 2, + STATE(1358), 1, + sym_list_splat, + STATE(1649), 1, + sym_type, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(994), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35389,65 +35472,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14192] = 21, + [14169] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + ACTIONS(1000), 1, + anon_sym_RPAREN, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1276), 1, + STATE(1192), 1, sym_expression, - ACTIONS(309), 2, + STATE(1522), 1, + sym_with_item, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(996), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35465,65 +35549,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14289] = 21, + [14268] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(789), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(790), 1, sym_string, - STATE(1240), 1, + STATE(791), 1, + sym_template_string, + STATE(1192), 1, sym_expression, - ACTIONS(77), 2, + STATE(1478), 1, + sym_with_item, + STATE(1719), 1, + sym_with_clause, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(998), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(49), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35541,7 +35626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14386] = 21, + [14367] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -35554,26 +35639,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1240), 1, + STATE(1278), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1000), 2, + ACTIONS(1004), 2, sym__newline, anon_sym_SEMI, ACTIONS(49), 3, @@ -35585,21 +35670,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35617,65 +35702,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14483] = 21, + [14464] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(970), 1, + anon_sym_COLON, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(789), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(790), 1, sym_string, - STATE(1240), 1, + STATE(791), 1, + sym_template_string, + STATE(1177), 1, sym_expression, - ACTIONS(77), 2, + STATE(1594), 1, + sym_exception_list, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(1002), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(49), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35693,42 +35779,42 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14580] = 21, + [14563] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1261), 1, + STATE(1104), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1004), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + STATE(1178), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -35737,21 +35823,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35769,42 +35855,43 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14677] = 21, + [14660] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, - anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1097), 1, + STATE(1317), 1, sym_expression, + STATE(1566), 1, + sym_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1208), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -35813,21 +35900,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35845,66 +35932,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14774] = 22, + [14759] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(960), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(976), 1, anon_sym_await, - ACTIONS(1006), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(1002), 1, + anon_sym_LPAREN, + STATE(789), 1, sym_primary_expression, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(1205), 1, + STATE(1192), 1, sym_expression, - STATE(1481), 1, + STATE(1478), 1, sym_with_item, - ACTIONS(650), 2, + STATE(1716), 1, + sym_with_clause, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35922,143 +36009,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14873] = 22, + [14858] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - ACTIONS(986), 1, - anon_sym_COLON, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, - sym_string, - STATE(794), 1, - sym_template_string, - STATE(1203), 1, - sym_expression, - STATE(1548), 1, - sym_exception_list, - ACTIONS(650), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(636), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(954), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1211), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(970), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [14972] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(1008), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - STATE(792), 1, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(793), 1, + STATE(779), 1, sym_string, - STATE(794), 1, - sym_template_string, - STATE(1205), 1, + STATE(1278), 1, sym_expression, - STATE(1477), 1, - sym_with_item, - STATE(1651), 1, - sym_with_clause, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(1006), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36076,7 +36085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15071] = 21, + [14955] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -36091,24 +36100,24 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1285), 1, + STATE(1320), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1010), 2, + ACTIONS(1008), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(301), 3, @@ -36127,14 +36136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36152,42 +36161,42 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15168] = 21, + [15052] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, - anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1303), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1173), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(606), 3, + ACTIONS(1010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -36196,21 +36205,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36228,7 +36237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15265] = 21, + [15149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -36243,24 +36252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(834), 1, + ACTIONS(864), 1, anon_sym_lambda, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1097), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1165), 2, + STATE(1174), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(606), 3, @@ -36272,21 +36281,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36304,65 +36313,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15362] = 21, + [15246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, - anon_sym_not, - ACTIONS(816), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(834), 1, - anon_sym_lambda, - STATE(645), 1, - sym_string, - STATE(658), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, sym_template_string, - STATE(726), 1, + STATE(773), 1, sym_primary_expression, - STATE(1092), 1, + STATE(779), 1, + sym_string, + STATE(1278), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(1117), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(606), 3, + ACTIONS(1012), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36380,66 +36389,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15459] = 22, + [15343] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(958), 1, - anon_sym_COLON, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(792), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(793), 1, + STATE(779), 1, sym_string, - STATE(794), 1, - sym_template_string, - STATE(1210), 1, + STATE(1278), 1, sym_expression, - STATE(1562), 1, - sym_exception_list, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(1014), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36457,66 +36465,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15558] = 22, + [15440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(1012), 1, - anon_sym_RPAREN, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1205), 1, + STATE(705), 1, + sym_primary_expression, + STATE(1097), 1, sym_expression, - STATE(1481), 1, - sym_with_item, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1135), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36534,7 +36541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15657] = 22, + [15537] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -36549,27 +36556,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(792), 1, - anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1318), 1, sym_expression, - STATE(1549), 1, - sym_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, + ACTIONS(1016), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -36586,14 +36592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36611,65 +36617,220 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15756] = 21, + [15634] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(976), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(992), 1, + anon_sym_COLON, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(1208), 1, + sym_expression, + STATE(1547), 1, + sym_exception_list, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1198), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15733] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(1192), 1, + sym_expression, + STATE(1478), 1, + sym_with_item, + STATE(1613), 1, + sym_with_clause, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1198), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15832] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + ACTIONS(1002), 1, + anon_sym_LPAREN, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1258), 1, + STATE(1192), 1, sym_expression, - ACTIONS(309), 2, + STATE(1478), 1, + sym_with_item, + STATE(1622), 1, + sym_with_clause, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(1014), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36687,7 +36848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15853] = 21, + [15931] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -36702,24 +36863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(680), 1, anon_sym_not, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(834), 1, + ACTIONS(864), 1, anon_sym_lambda, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1099), 1, + STATE(1097), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1172), 2, + STATE(1222), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(606), 3, @@ -36731,21 +36892,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36763,66 +36924,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15950] = 22, + [16028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, anon_sym_await, - ACTIONS(1008), 1, - anon_sym_LPAREN, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + ACTIONS(864), 1, + anon_sym_lambda, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1205), 1, + STATE(705), 1, + sym_primary_expression, + STATE(1099), 1, sym_expression, - STATE(1477), 1, - sym_with_item, - STATE(1599), 1, - sym_with_clause, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1205), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36840,66 +37000,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16049] = 22, + [16125] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(960), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(976), 1, anon_sym_await, - ACTIONS(1008), 1, - anon_sym_LPAREN, - STATE(792), 1, + ACTIONS(1018), 1, + anon_sym_RPAREN, + STATE(789), 1, sym_primary_expression, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(1205), 1, + STATE(1192), 1, sym_expression, - STATE(1477), 1, + STATE(1522), 1, sym_with_item, - STATE(1607), 1, - sym_with_clause, - ACTIONS(650), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36917,66 +37077,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16148] = 22, + [16224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(1008), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(585), 1, anon_sym_LPAREN, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, + anon_sym_not, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1205), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1283), 1, sym_expression, - STATE(1477), 1, - sym_with_item, - STATE(1645), 1, - sym_with_clause, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(1020), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36994,13 +37153,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16247] = 3, + [16321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 13, - sym__dedent, + ACTIONS(1022), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37011,7 +37170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 39, + ACTIONS(1024), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37051,20 +37210,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16307] = 8, + [16381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - ACTIONS(1024), 1, - anon_sym_elif, - STATE(364), 1, - aux_sym_if_statement_repeat1, - STATE(471), 1, - sym_elif_clause, - STATE(544), 1, - sym_else_clause, - ACTIONS(1020), 13, + ACTIONS(1026), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -37078,7 +37227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1022), 34, + ACTIONS(1028), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37092,12 +37241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37113,20 +37267,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16377] = 8, + [16441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(1032), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1030), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_else, - ACTIONS(1024), 1, - anon_sym_elif, - STATE(323), 1, - aux_sym_if_statement_repeat1, - STATE(471), 1, - sym_elif_clause, - STATE(548), 1, - sym_else_clause, - ACTIONS(1026), 13, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + anon_sym_except, + STATE(314), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1034), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -37140,7 +37346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1028), 34, + ACTIONS(1036), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37154,10 +37360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -37175,23 +37383,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16447] = 8, + [16565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - ACTIONS(1034), 1, - anon_sym_elif, - STATE(374), 1, - aux_sym_if_statement_repeat1, - STATE(469), 1, - sym_elif_clause, - STATE(540), 1, - sym_else_clause, - ACTIONS(1032), 13, - sym__dedent, + ACTIONS(1045), 1, + anon_sym_except, + STATE(315), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1041), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37202,7 +37405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1030), 34, + ACTIONS(1043), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37216,10 +37419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -37237,168 +37442,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16517] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, - sym_string, - STATE(794), 1, - sym_template_string, - STATE(1174), 1, - sym_expression, - STATE(1555), 1, - sym_exception_list, - ACTIONS(650), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(636), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(954), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1211), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(970), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16613] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, - sym_string, - STATE(794), 1, - sym_template_string, - STATE(1205), 1, - sym_expression, - STATE(1481), 1, - sym_with_item, - ACTIONS(650), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(636), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(954), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1211), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(970), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16709] = 5, + [16629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 1, - anon_sym_except, - STATE(316), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1036), 13, + ACTIONS(1026), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37409,7 +37459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(1028), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37423,14 +37473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37446,69 +37499,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16773] = 5, + [16689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_except, - STATE(317), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1043), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1050), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1045), 36, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1048), 35, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16837] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 13, + ACTIONS(1054), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -37522,7 +37573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1050), 39, + ACTIONS(1052), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37562,10 +37613,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16897] = 3, + [16809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(1060), 1, + anon_sym_elif, + STATE(392), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(566), 1, + sym_else_clause, + ACTIONS(1056), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -37579,7 +37640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 39, + ACTIONS(1058), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37593,17 +37654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37619,13 +37675,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16957] = 3, + [16879] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 13, + ACTIONS(952), 1, + anon_sym_else, + ACTIONS(1066), 1, + anon_sym_elif, + STATE(321), 1, + aux_sym_if_statement_repeat1, + STATE(479), 1, + sym_elif_clause, + STATE(549), 1, + sym_else_clause, + ACTIONS(1064), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37636,7 +37702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1056), 39, + ACTIONS(1062), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37650,17 +37716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37676,13 +37737,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17017] = 3, + [16949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 13, + ACTIONS(952), 1, + anon_sym_else, + ACTIONS(1066), 1, + anon_sym_elif, + STATE(350), 1, + aux_sym_if_statement_repeat1, + STATE(479), 1, + sym_elif_clause, + STATE(563), 1, + sym_else_clause, + ACTIONS(1070), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37693,7 +37764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1060), 39, + ACTIONS(1068), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37707,17 +37778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37733,10 +37799,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17077] = 3, + [17019] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 13, + ACTIONS(952), 1, + anon_sym_else, + ACTIONS(1066), 1, + anon_sym_elif, + STATE(337), 1, + aux_sym_if_statement_repeat1, + STATE(479), 1, + sym_elif_clause, + STATE(565), 1, + sym_else_clause, + ACTIONS(1074), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -37750,7 +37826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1060), 39, + ACTIONS(1072), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37764,17 +37840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37790,23 +37861,93 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17137] = 8, + [17089] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - ACTIONS(1024), 1, - anon_sym_elif, - STATE(364), 1, - aux_sym_if_statement_repeat1, - STATE(471), 1, - sym_elif_clause, - STATE(579), 1, - sym_else_clause, - ACTIONS(1032), 13, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(1193), 1, + sym_expression, + STATE(1564), 1, + sym_exception_list, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1198), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17185] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 1, + anon_sym_except, + STATE(324), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1034), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37817,7 +37958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1030), 34, + ACTIONS(1036), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37831,10 +37972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -37852,77 +37995,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1062), 35, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [17267] = 8, + [17249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - ACTIONS(1034), 1, - anon_sym_elif, - STATE(329), 1, - aux_sym_if_statement_repeat1, - STATE(469), 1, - sym_elif_clause, - STATE(516), 1, - sym_else_clause, - ACTIONS(1068), 13, + ACTIONS(1022), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -37936,7 +38012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 34, + ACTIONS(1024), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -37950,12 +38026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37971,13 +38052,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17337] = 3, + [17309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 13, - sym__dedent, + ACTIONS(1079), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37988,7 +38069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1056), 39, + ACTIONS(1081), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38028,9 +38109,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17397] = 3, + [17369] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(1060), 1, + anon_sym_elif, + STATE(392), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(520), 1, + sym_else_clause, ACTIONS(1070), 13, sym__string_start, sym__template_string_start, @@ -38045,7 +38136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1072), 39, + ACTIONS(1068), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38059,17 +38150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38085,80 +38171,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17457] = 3, + [17439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(1054), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 35, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1052), 39, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [17517] = 8, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17499] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, + ACTIONS(978), 1, anon_sym_else, - ACTIONS(1034), 1, + ACTIONS(1060), 1, anon_sym_elif, - STATE(374), 1, + STATE(319), 1, aux_sym_if_statement_repeat1, - STATE(469), 1, + STATE(473), 1, sym_elif_clause, - STATE(527), 1, + STATE(521), 1, sym_else_clause, - ACTIONS(1020), 13, - sym__dedent, + ACTIONS(1074), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38169,7 +38255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1022), 34, + ACTIONS(1072), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38204,20 +38290,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17587] = 8, + [17569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - ACTIONS(1034), 1, - anon_sym_elif, - STATE(313), 1, - aux_sym_if_statement_repeat1, - STATE(469), 1, - sym_elif_clause, - STATE(528), 1, - sym_else_clause, - ACTIONS(1026), 13, + ACTIONS(1079), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -38231,7 +38307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1028), 34, + ACTIONS(1081), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38245,12 +38321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38266,23 +38347,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17657] = 8, + [17629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - ACTIONS(1024), 1, - anon_sym_elif, - STATE(311), 1, - aux_sym_if_statement_repeat1, - STATE(471), 1, - sym_elif_clause, - STATE(599), 1, - sym_else_clause, - ACTIONS(1068), 13, + ACTIONS(1083), 1, + anon_sym_except, + STATE(331), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1041), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38293,7 +38369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 34, + ACTIONS(1043), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38307,10 +38383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -38328,13 +38406,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17727] = 3, + [17693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 13, - sym__dedent, + ACTIONS(978), 1, + anon_sym_else, + ACTIONS(1060), 1, + anon_sym_elif, + STATE(327), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(529), 1, + sym_else_clause, + ACTIONS(1064), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38345,7 +38433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1072), 39, + ACTIONS(1062), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38359,17 +38447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38385,15 +38468,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17787] = 5, + [17763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 1, - anon_sym_except, - STATE(333), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1036), 13, + ACTIONS(1088), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -38407,7 +38485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(1086), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38421,14 +38499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38444,18 +38525,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17851] = 5, + [17823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - anon_sym_except, - STATE(334), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1043), 13, - sym__dedent, + ACTIONS(1088), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38466,7 +38542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1045), 36, + ACTIONS(1086), 39, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38480,14 +38556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38503,64 +38582,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17915] = 21, + [17883] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(960), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(792), 1, + STATE(789), 1, sym_primary_expression, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(1204), 1, + STATE(1209), 1, sym_expression, - STATE(1550), 1, + STATE(1551), 1, sym_exception_list, - ACTIONS(650), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38578,13 +38657,98 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18011] = 3, + [17979] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 13, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(1192), 1, + sym_expression, + STATE(1522), 1, + sym_with_item, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1198), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18075] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_else, + ACTIONS(1066), 1, + anon_sym_elif, + STATE(350), 1, + aux_sym_if_statement_repeat1, + STATE(479), 1, + sym_elif_clause, + STATE(578), 1, + sym_else_clause, + ACTIONS(1056), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38595,7 +38759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1050), 39, + ACTIONS(1058), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -38609,17 +38773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -38635,62 +38794,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18071] = 20, + [18145] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1155), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1069), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38708,7 +38867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18164] = 20, + [18238] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -38721,21 +38880,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1225), 1, + STATE(1112), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -38749,21 +38908,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38781,7 +38940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18257] = 20, + [18331] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -38794,21 +38953,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1147), 1, + STATE(1241), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -38822,21 +38981,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38854,62 +39013,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18350] = 20, + [18424] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1089), 1, + STATE(779), 1, + sym_string, + STATE(1295), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38927,62 +39086,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18443] = 20, + [18517] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1270), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1072), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39000,38 +39159,41 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18536] = 20, + [18610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(1090), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1109), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(470), 2, + sym_attribute, + sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -39041,25 +39203,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(1092), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -39073,7 +39233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18629] = 20, + [18705] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -39088,19 +39248,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1094), 1, + STATE(1268), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -39121,14 +39281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39146,62 +39306,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18722] = 20, + [18798] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(768), 1, + anon_sym_not, + STATE(694), 1, sym_string, - STATE(1265), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1386), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39219,62 +39379,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18815] = 20, + [18891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1074), 1, + STATE(779), 1, + sym_string, + STATE(1123), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39292,62 +39452,125 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18908] = 20, + [18984] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(277), 1, + anon_sym_COMMA, + ACTIONS(283), 1, + anon_sym_COLON_EQ, + ACTIONS(1096), 1, + anon_sym_for, + ACTIONS(1098), 1, + anon_sym_with, + ACTIONS(1100), 1, + anon_sym_def, + ACTIONS(285), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(272), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 16, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(622), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(624), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [19057] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1119), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1331), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39365,39 +39588,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19001] = 20, + [19150] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, - anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1180), 1, + STATE(1125), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -39406,21 +39629,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39438,62 +39661,121 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19094] = 20, + [19243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(1106), 1, + anon_sym_elif, + STATE(350), 1, + aux_sym_if_statement_repeat1, + STATE(479), 1, + sym_elif_clause, + ACTIONS(1104), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(305), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1102), 35, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(313), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + sym_true, + sym_false, + sym_none, + [19308] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1337), 1, + STATE(1214), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39511,7 +39793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19187] = 20, + [19401] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -39524,21 +39806,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1152), 1, + STATE(1255), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -39552,21 +39834,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39584,7 +39866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19280] = 20, + [19494] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -39599,19 +39881,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1263), 1, + STATE(1085), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -39632,14 +39914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39657,7 +39939,80 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19373] = 20, + [19587] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, + anon_sym_not, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, + anon_sym_await, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, + sym_string, + STATE(782), 1, + sym_template_string, + STATE(1221), 1, + sym_expression, + ACTIONS(626), 2, + sym_ellipsis, + sym_float, + ACTIONS(620), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(612), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(752), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1131), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(949), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19680] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -39672,19 +40027,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1275), 1, + STATE(1088), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -39705,14 +40060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39730,62 +40085,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19466] = 20, + [19773] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1182), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1171), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39803,7 +40158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19559] = 20, + [19866] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -39816,21 +40171,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1268), 1, + STATE(1121), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -39844,21 +40199,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39876,7 +40231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19652] = 20, + [19959] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -39891,19 +40246,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1364), 1, + STATE(1096), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -39924,14 +40279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39949,7 +40304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19745] = 20, + [20052] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -39964,19 +40319,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1339), 1, + STATE(1071), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -39997,14 +40352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40022,62 +40377,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19838] = 20, + [20145] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1194), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1089), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40095,62 +40450,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19931] = 20, + [20238] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1197), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1267), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40168,62 +40523,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20024] = 20, + [20331] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1198), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1297), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40241,62 +40596,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20117] = 20, + [20424] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(768), 1, + anon_sym_not, + STATE(694), 1, sym_string, - STATE(1240), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1298), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40314,62 +40669,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20210] = 20, + [20517] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1309), 1, + STATE(779), 1, + sym_string, + STATE(1313), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40387,62 +40742,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20303] = 20, + [20610] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(792), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(793), 1, + STATE(779), 1, sym_string, - STATE(794), 1, - sym_template_string, - STATE(1200), 1, + STATE(1118), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40460,62 +40815,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20396] = 20, + [20703] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(952), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(960), 1, - anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(792), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(793), 1, + STATE(779), 1, sym_string, - STATE(794), 1, - sym_template_string, - STATE(1178), 1, + STATE(1316), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40533,62 +40888,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20489] = 20, + [20796] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1185), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1081), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40606,100 +40961,38 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20582] = 6, + [20889] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, - anon_sym_elif, - STATE(364), 1, - aux_sym_if_statement_repeat1, - STATE(471), 1, - sym_elif_clause, - ACTIONS(1084), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1086), 35, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(268), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20647] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(293), 1, anon_sym_LBRACE, ACTIONS(305), 1, anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1094), 1, + STATE(1076), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(585), 2, - sym_attribute, - sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -40709,23 +41002,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1093), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 15, + STATE(720), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -40739,62 +41034,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20742] = 20, + [20982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(763), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(766), 1, + STATE(779), 1, sym_string, - STATE(776), 1, - sym_template_string, - STATE(1120), 1, + STATE(1115), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40812,7 +41107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20835] = 20, + [21075] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -40825,7 +41120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(750), 1, sym_identifier, ACTIONS(760), 1, anon_sym_not, @@ -40833,13 +41128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(764), 1, anon_sym_await, - STATE(763), 1, + STATE(780), 1, sym_primary_expression, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(1121), 1, + STATE(1152), 1, sym_expression, ACTIONS(626), 2, sym_ellipsis, @@ -40853,21 +41148,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40885,62 +41180,135 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20928] = 20, + [21168] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(763), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(766), 1, + STATE(779), 1, + sym_string, + STATE(1220), 1, + sym_expression, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(79), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(363), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1126), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(950), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21261] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, + anon_sym_not, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1122), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1038), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40958,62 +41326,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21021] = 20, + [21354] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(760), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(762), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(763), 1, + STATE(789), 1, sym_primary_expression, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(1123), 1, + STATE(1182), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41031,7 +41399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21114] = 20, + [21447] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -41044,7 +41412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(750), 1, sym_identifier, ACTIONS(760), 1, anon_sym_not, @@ -41052,13 +41420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(764), 1, anon_sym_await, - STATE(763), 1, + STATE(780), 1, sym_primary_expression, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(1124), 1, + STATE(1159), 1, sym_expression, ACTIONS(626), 2, sym_ellipsis, @@ -41072,21 +41440,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41104,62 +41472,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21207] = 20, + [21540] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1078), 1, + STATE(1189), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41177,62 +41545,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21300] = 20, + [21633] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1190), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41250,62 +41618,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21393] = 20, + [21726] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(760), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(762), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(763), 1, + STATE(789), 1, sym_primary_expression, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(1125), 1, + STATE(1201), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41323,121 +41691,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21486] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_elif, - STATE(374), 1, - aux_sym_if_statement_repeat1, - STATE(469), 1, - sym_elif_clause, - ACTIONS(1084), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1086), 35, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21551] = 20, + [21819] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(754), 1, + ACTIONS(964), 1, sym_identifier, - ACTIONS(760), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(762), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(763), 1, + STATE(789), 1, sym_primary_expression, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(1143), 1, + STATE(1188), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41455,62 +41764,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21644] = 20, + [21912] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1031), 1, + STATE(1197), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41528,62 +41837,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21737] = 20, + [22005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(750), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(760), 1, + anon_sym_not, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(780), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(781), 1, sym_string, - STATE(1366), 1, + STATE(782), 1, + sym_template_string, + STATE(1162), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41601,7 +41910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21830] = 20, + [22098] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -41614,21 +41923,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1274), 1, + STATE(1161), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -41642,21 +41951,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41674,62 +41983,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21923] = 20, + [22191] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, + anon_sym_await, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1244), 1, + STATE(1165), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41747,62 +42056,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22016] = 20, + [22284] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(750), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(760), 1, + anon_sym_not, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(780), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(781), 1, sym_string, - STATE(1145), 1, + STATE(782), 1, + sym_template_string, + STATE(1167), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41820,62 +42129,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22109] = 20, + [22377] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(762), 1, anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, + ACTIONS(764), 1, anon_sym_await, - STATE(645), 1, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(726), 1, - sym_primary_expression, - STATE(1067), 1, + STATE(1168), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41893,62 +42202,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22202] = 20, + [22470] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(750), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(760), 1, + anon_sym_not, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(780), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(781), 1, sym_string, - STATE(1126), 1, + STATE(782), 1, + sym_template_string, + STATE(1170), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41966,62 +42275,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22295] = 20, + [22563] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1151), 1, + STATE(779), 1, + sym_string, + STATE(1326), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42039,7 +42348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22388] = 20, + [22656] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -42052,21 +42361,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1142), 1, + STATE(1247), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -42080,21 +42389,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42112,62 +42421,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22481] = 20, + [22749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(762), 1, anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, + ACTIONS(764), 1, anon_sym_await, - STATE(645), 1, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(726), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1169), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42185,62 +42494,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22574] = 20, + [22842] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(974), 1, anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(645), 1, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(726), 1, - sym_primary_expression, - STATE(1072), 1, + STATE(1233), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(646), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(966), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1198), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42258,39 +42567,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22667] = 20, + [22935] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1196), 1, + STATE(1238), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42299,21 +42608,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42331,7 +42640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22760] = 20, + [23028] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -42348,17 +42657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(682), 1, anon_sym_lambda, - ACTIONS(816), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1038), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -42372,21 +42681,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42404,62 +42713,121 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22853] = 20, + [23121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(1109), 1, + anon_sym_elif, + STATE(392), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + ACTIONS(1104), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(646), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(648), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(952), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1102), 35, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(960), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23186] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(964), 1, + ACTIONS(83), 1, + sym__string_start, + ACTIONS(85), 1, + sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, anon_sym_await, - STATE(792), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, sym_primary_expression, - STATE(793), 1, + STATE(779), 1, sym_string, - STATE(794), 1, - sym_template_string, - STATE(1187), 1, + STATE(1278), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42477,62 +42845,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22946] = 20, + [23279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1189), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1350), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42550,62 +42918,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23039] = 20, + [23372] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1141), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1098), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42623,62 +42991,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23132] = 20, + [23465] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(816), 1, + ACTIONS(83), 1, + sym__string_start, + ACTIONS(85), 1, + sym__template_string_start, + ACTIONS(361), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(367), 1, anon_sym_await, - STATE(645), 1, - sym_string, - STATE(658), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, sym_template_string, - STATE(726), 1, + STATE(773), 1, sym_primary_expression, - STATE(1076), 1, + STATE(779), 1, + sym_string, + STATE(1129), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42696,39 +43064,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23225] = 20, + [23558] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(682), 1, - anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, - anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(704), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1109), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42737,21 +43105,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42769,62 +43137,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23318] = 20, + [23651] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1184), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1224), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42842,62 +43210,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23411] = 20, + [23744] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(608), 1, - anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(750), 1, + sym_identifier, + ACTIONS(760), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(762), 1, anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, + ACTIONS(764), 1, anon_sym_await, - STATE(645), 1, + STATE(780), 1, + sym_primary_expression, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(726), 1, - sym_primary_expression, - STATE(1082), 1, + STATE(1145), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42915,62 +43283,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23504] = 20, + [23837] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1312), 1, + STATE(779), 1, + sym_string, + STATE(1225), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42988,7 +43356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23597] = 20, + [23930] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -43005,21 +43373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(682), 1, anon_sym_lambda, - ACTIONS(816), 1, + ACTIONS(1112), 1, sym_identifier, - ACTIONS(822), 1, + ACTIONS(1116), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1031), 1, + STATE(1098), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(470), 2, + sym_attribute, + sym_subscript, ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, @@ -43029,25 +43400,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(1114), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -43061,62 +43430,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23690] = 20, + [24025] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1131), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1292), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43134,62 +43503,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23783] = 20, + [24118] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(768), 1, + anon_sym_not, + STATE(694), 1, sym_string, - STATE(1277), 1, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1347), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43207,7 +43576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23876] = 20, + [24211] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -43220,21 +43589,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1167), 1, + STATE(1284), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -43248,21 +43617,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43280,62 +43649,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [23969] = 20, + [24304] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(762), 1, - anon_sym_lambda, - ACTIONS(764), 1, - anon_sym_await, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1106), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1363), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43353,39 +43722,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24062] = 20, + [24397] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1066), 1, + STATE(1091), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43394,21 +43763,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43426,7 +43795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24155] = 20, + [24490] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -43439,21 +43808,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, sym_string, - STATE(1216), 1, + STATE(1319), 1, sym_expression, ACTIONS(77), 2, sym_ellipsis, @@ -43467,94 +43836,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(351), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1156), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(920), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [24248] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1306), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43572,7 +43868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24341] = 20, + [24583] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -43581,30 +43877,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(680), 1, + ACTIONS(718), 1, + sym_identifier, + ACTIONS(732), 1, anon_sym_not, - ACTIONS(682), 1, + ACTIONS(734), 1, anon_sym_lambda, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(822), 1, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(726), 1, + STATE(775), 1, sym_primary_expression, - STATE(1065), 1, + STATE(1153), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43613,21 +43909,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(818), 6, + ACTIONS(720), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43645,135 +43941,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24434] = 20, + [24676] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(719), 1, - sym_primary_expression, - STATE(1235), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(270), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1032), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [24527] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(268), 1, + ACTIONS(361), 1, sym_identifier, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(367), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(719), 1, + STATE(773), 1, sym_primary_expression, - STATE(1080), 1, + STATE(779), 1, + sym_string, + STATE(1139), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(363), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1126), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43791,7 +44014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24620] = 20, + [24769] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -43800,30 +44023,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1158), 1, + STATE(1154), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43839,14 +44062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43864,7 +44087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24713] = 20, + [24862] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -43873,30 +44096,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1159), 1, + STATE(1155), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43912,14 +44135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43937,7 +44160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24806] = 20, + [24955] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -43946,30 +44169,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1160), 1, + STATE(1156), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43985,14 +44208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44010,7 +44233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24899] = 20, + [25048] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -44019,30 +44242,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1161), 1, + STATE(1157), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44058,14 +44281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44083,7 +44306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24992] = 20, + [25141] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -44092,30 +44315,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1162), 1, + STATE(1163), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44131,14 +44354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44156,7 +44379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25085] = 20, + [25234] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -44165,30 +44388,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1166), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44204,14 +44427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44229,7 +44452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25178] = 20, + [25327] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -44238,30 +44461,30 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(642), 1, anon_sym_LBRACK, ACTIONS(718), 1, sym_identifier, - ACTIONS(730), 1, - anon_sym_not, ACTIONS(732), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(734), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(775), 1, sym_primary_expression, - STATE(1164), 1, + STATE(1038), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44277,14 +44500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44302,39 +44525,112 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25271] = 20, + [25420] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(964), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(974), 1, + anon_sym_lambda, + ACTIONS(976), 1, + anon_sym_await, + STATE(789), 1, + sym_primary_expression, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(1266), 1, + sym_expression, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1198), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25513] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(268), 1, + sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(730), 1, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(732), 1, - anon_sym_lambda, - ACTIONS(734), 1, - anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(780), 1, + STATE(704), 1, sym_primary_expression, - STATE(1031), 1, + STATE(1353), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44343,21 +44639,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(720), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44375,62 +44671,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25364] = 20, + [25606] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(754), 1, - sym_identifier, - ACTIONS(760), 1, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_LBRACK, + ACTIONS(680), 1, anon_sym_not, - ACTIONS(762), 1, + ACTIONS(682), 1, anon_sym_lambda, - ACTIONS(764), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, anon_sym_await, - STATE(763), 1, - sym_primary_expression, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(1188), 1, + STATE(705), 1, + sym_primary_expression, + STATE(1077), 1, sym_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(756), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1104), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44448,7 +44744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25457] = 20, + [25699] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44463,19 +44759,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1336), 1, + STATE(1361), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44496,14 +44792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44521,7 +44817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25550] = 20, + [25792] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44536,19 +44832,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1199), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44569,14 +44865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44594,7 +44890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25643] = 20, + [25885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44609,19 +44905,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1345), 1, + STATE(1387), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44642,14 +44938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44667,7 +44963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25736] = 20, + [25978] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44682,19 +44978,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1367), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44715,14 +45011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44740,7 +45036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25829] = 20, + [26071] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44755,19 +45051,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1349), 1, + STATE(1370), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44788,14 +45084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44813,7 +45109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25922] = 20, + [26164] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44828,19 +45124,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1351), 1, + STATE(1371), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44861,14 +45157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44886,39 +45182,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26015] = 20, + [26257] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1352), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44927,21 +45223,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44959,7 +45255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26108] = 20, + [26350] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -44974,19 +45270,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1343), 1, + STATE(1359), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45007,14 +45303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45032,39 +45328,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26201] = 20, + [26443] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(268), 1, - sym_identifier, ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(680), 1, anon_sym_not, - STATE(645), 1, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(705), 1, sym_primary_expression, - STATE(1327), 1, + STATE(1083), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -45073,21 +45369,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(270), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45105,7 +45401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26294] = 20, + [26536] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -45120,19 +45416,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1325), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45153,14 +45449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45178,62 +45474,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26387] = 20, + [26629] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(349), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_await, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - STATE(765), 1, - sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + anon_sym_lambda, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(816), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(1146), 1, + STATE(698), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + STATE(1082), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(810), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45251,7 +45547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26480] = 20, + [26722] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -45266,19 +45562,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1355), 1, + STATE(1376), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45299,14 +45595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45324,62 +45620,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26573] = 20, + [26815] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(952), 1, - sym_identifier, - ACTIONS(960), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - ACTIONS(962), 1, - anon_sym_lambda, - ACTIONS(964), 1, - anon_sym_await, - STATE(792), 1, - sym_primary_expression, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(1253), 1, + STATE(704), 1, + sym_primary_expression, + STATE(1365), 1, sym_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(954), 6, + ACTIONS(270), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1211), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45397,70 +45693,153 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26666] = 10, + [26908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, - anon_sym_COMMA, - ACTIONS(283), 1, - anon_sym_COLON_EQ, - ACTIONS(1100), 1, - anon_sym_for, - ACTIONS(1102), 1, - anon_sym_with, - ACTIONS(1104), 1, - anon_sym_def, - ACTIONS(285), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(272), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, + sym__string_start, + ACTIONS(85), 1, + sym__template_string_start, + ACTIONS(361), 1, + sym_identifier, + ACTIONS(367), 1, + anon_sym_await, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + STATE(772), 1, + sym_template_string, + STATE(773), 1, + sym_primary_expression, + STATE(779), 1, + sym_string, + STATE(1147), 1, + sym_expression, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 16, - sym__newline, - anon_sym_DOT, + anon_sym_TILDE, + ACTIONS(79), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(363), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1126), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(950), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [27001] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(585), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(596), 1, anon_sym_LBRACK, + ACTIONS(768), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [26739] = 20, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(704), 1, + sym_primary_expression, + STATE(1261), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(270), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1037), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(720), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [27094] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -45475,19 +45854,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1356), 1, + STATE(1377), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45508,14 +45887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45533,7 +45912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26832] = 20, + [27187] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(268), 1, @@ -45548,19 +45927,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(768), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(719), 1, + STATE(704), 1, sym_primary_expression, - STATE(1357), 1, + STATE(1378), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45581,14 +45960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1032), 6, + STATE(1037), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45606,18 +45985,18 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26925] = 10, + [27280] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(277), 1, anon_sym_COMMA, ACTIONS(283), 1, anon_sym_COLON_EQ, - ACTIONS(1106), 1, + ACTIONS(1118), 1, anon_sym_for, - ACTIONS(1108), 1, + ACTIONS(1120), 1, anon_sym_with, - ACTIONS(1110), 1, + ACTIONS(1122), 1, anon_sym_def, ACTIONS(285), 2, anon_sym_COLON, @@ -45669,62 +46048,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [26998] = 20, + [27353] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_not, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(83), 1, + ACTIONS(630), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(632), 1, sym__template_string_start, - ACTIONS(349), 1, + ACTIONS(750), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(760), 1, + anon_sym_not, + ACTIONS(762), 1, + anon_sym_lambda, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(780), 1, sym_primary_expression, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(781), 1, sym_string, - STATE(1242), 1, + STATE(782), 1, + sym_template_string, + STATE(1164), 1, sym_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(612), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(351), 6, + ACTIONS(752), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1156), 6, + STATE(1131), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45742,10 +46121,10 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [27091] = 3, + [27446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 13, + ACTIONS(1126), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -45759,7 +46138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1112), 37, + ACTIONS(1124), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -45797,15 +46176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27149] = 5, + [27504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(1132), 1, anon_sym_case, - STATE(436), 2, + STATE(444), 2, sym_case_block, aux_sym_cases_repeat1, - ACTIONS(1118), 13, + ACTIONS(1130), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -45819,64 +46198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1116), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1127), 1, - anon_sym_case, - STATE(458), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1123), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1125), 34, + ACTIONS(1128), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -45911,10 +46233,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27273] = 3, + [27566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 13, + ACTIONS(1134), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45928,7 +46250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1131), 37, + ACTIONS(1136), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -45966,10 +46288,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27331] = 3, + [27624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1133), 13, + ACTIONS(1138), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45983,7 +46305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1135), 37, + ACTIONS(1140), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46021,13 +46343,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27389] = 3, + [27682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 13, - sym__dedent, + ACTIONS(1142), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46038,7 +46360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1137), 37, + ACTIONS(1144), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46076,10 +46398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27447] = 3, + [27740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 13, + ACTIONS(1150), 1, + anon_sym_case, + STATE(444), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1148), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46093,7 +46420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1131), 37, + ACTIONS(1146), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46107,13 +46434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -46131,10 +46455,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27505] = 3, + [27802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 13, + ACTIONS(1153), 1, + anon_sym_case, + STATE(445), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1148), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46148,7 +46477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1143), 37, + ACTIONS(1146), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46162,68 +46491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1133), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1135), 37, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -46241,13 +46512,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27621] = 3, + [27864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 13, - sym__dedent, + ACTIONS(1156), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46258,7 +46529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1145), 37, + ACTIONS(1158), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46296,10 +46567,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27679] = 3, + [27922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 13, + ACTIONS(1160), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46313,7 +46584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1151), 37, + ACTIONS(1162), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46351,10 +46622,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27737] = 3, + [27980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 13, + ACTIONS(1166), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46368,7 +46639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1153), 37, + ACTIONS(1164), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46406,13 +46677,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27795] = 3, + [28038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 13, - sym__dedent, + ACTIONS(1166), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46423,7 +46694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1157), 37, + ACTIONS(1164), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46461,10 +46732,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27853] = 3, + [28096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 13, + ACTIONS(1168), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46478,7 +46749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1153), 37, + ACTIONS(1170), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46516,10 +46787,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27911] = 3, + [28154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 13, + ACTIONS(1126), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46533,7 +46804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1157), 37, + ACTIONS(1124), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46571,17 +46842,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27969] = 9, + [28212] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(277), 1, anon_sym_COMMA, ACTIONS(283), 1, anon_sym_COLON_EQ, - ACTIONS(1161), 1, - anon_sym_import, - ACTIONS(1163), 1, - anon_sym_from, + ACTIONS(1172), 1, + sym__string_start, + STATE(1411), 1, + sym_string, ACTIONS(285), 2, anon_sym_COLON, anon_sym_EQ, @@ -46632,74 +46903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [28039] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - anon_sym_case, - STATE(436), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1123), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1125), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28101] = 9, + [28282] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(277), 1, anon_sym_COMMA, ACTIONS(283), 1, anon_sym_COLON_EQ, - ACTIONS(1167), 1, - sym__string_start, - STATE(1465), 1, - sym_string, + ACTIONS(1174), 1, + anon_sym_import, + ACTIONS(1176), 1, + anon_sym_from, ACTIONS(285), 2, anon_sym_COLON, anon_sym_EQ, @@ -46750,10 +46964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [28171] = 3, + [28352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 13, + ACTIONS(1160), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46767,7 +46981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1143), 37, + ACTIONS(1162), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46805,10 +47019,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28229] = 3, + [28410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 13, + ACTIONS(1178), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46822,7 +47036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1145), 37, + ACTIONS(1180), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46860,10 +47074,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28287] = 3, + [28468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 13, + ACTIONS(1134), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46877,7 +47091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1151), 37, + ACTIONS(1136), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46915,10 +47129,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28345] = 3, + [28526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 13, + ACTIONS(1182), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46932,7 +47146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1112), 37, + ACTIONS(1184), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -46970,13 +47184,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28403] = 3, + [28584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 13, + ACTIONS(1182), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46987,7 +47201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1171), 37, + ACTIONS(1184), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47025,67 +47239,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28461] = 5, + [28642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 1, - anon_sym_case, - STATE(458), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1118), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1116), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1169), 13, + ACTIONS(1178), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47099,7 +47256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1171), 37, + ACTIONS(1180), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47137,13 +47294,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28581] = 3, + [28700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 13, + ACTIONS(1138), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47154,7 +47311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1137), 37, + ACTIONS(1140), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47192,10 +47349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28639] = 3, + [28758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 13, + ACTIONS(1186), 1, + anon_sym_case, + STATE(445), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1130), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47209,7 +47371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 36, + ACTIONS(1128), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47223,8 +47385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -47246,17 +47406,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28696] = 5, + [28820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - STATE(600), 1, - sym_else_clause, - ACTIONS(1180), 13, + ACTIONS(1142), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47267,7 +47423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 34, + ACTIONS(1144), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47281,10 +47437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47302,14 +47461,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28757] = 5, + [28878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - STATE(519), 1, - sym_else_clause, - ACTIONS(1186), 13, + ACTIONS(1156), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47323,7 +47478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1184), 34, + ACTIONS(1158), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47337,66 +47492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28818] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, anon_sym_else, - STATE(583), 1, - sym_else_clause, - ACTIONS(1188), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1190), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47414,17 +47516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28879] = 5, + [28936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - STATE(593), 1, - sym_else_clause, - ACTIONS(1192), 13, + ACTIONS(1168), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47435,7 +47533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1194), 34, + ACTIONS(1170), 37, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47449,10 +47547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47470,17 +47571,158 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28940] = 5, + [28994] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_finally, - STATE(546), 1, - sym_finally_clause, - ACTIONS(1198), 13, - sym__dedent, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1188), 1, + anon_sym_RPAREN, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, + sym_primary_expression, + STATE(1355), 1, + sym_pattern, + STATE(1742), 1, + sym__patterns, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29089] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1002), 1, + sym_pattern, + STATE(1017), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(1192), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47491,7 +47733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1196), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47505,6 +47747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -47526,10 +47770,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29001] = 3, + [29239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(978), 1, + anon_sym_else, + STATE(516), 1, + sym_else_clause, + ACTIONS(1198), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47543,7 +47791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 36, + ACTIONS(1200), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47557,8 +47805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -47580,13 +47826,201 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29058] = 3, + [29300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 13, - sym__dedent, + ACTIONS(277), 1, + anon_sym_COMMA, + ACTIONS(283), 1, + anon_sym_COLON_EQ, + ACTIONS(1202), 1, + sym_identifier, + ACTIONS(285), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(303), 10, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SEMI, + ACTIONS(307), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(272), 21, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [29367] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + anon_sym_EQ, + ACTIONS(1206), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1211), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1209), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1204), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [29430] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1002), 1, + sym_pattern, + STATE(1017), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(1215), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47597,7 +48031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 36, + ACTIONS(1219), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47634,13 +48068,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29115] = 3, + [29580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 13, - sym__dedent, + ACTIONS(1221), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47651,7 +48085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1204), 36, + ACTIONS(1223), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47688,17 +48122,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29172] = 5, + [29637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, + ACTIONS(978), 1, anon_sym_else, - STATE(560), 1, + STATE(600), 1, sym_else_clause, - ACTIONS(1180), 13, - sym__dedent, + ACTIONS(1225), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47709,7 +48143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 34, + ACTIONS(1227), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47744,10 +48178,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29233] = 3, + [29698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 13, + ACTIONS(978), 1, + anon_sym_else, + STATE(538), 1, + sym_else_clause, + ACTIONS(1229), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47761,7 +48199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1204), 36, + ACTIONS(1231), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47775,8 +48213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -47798,17 +48234,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29290] = 5, + [29759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - STATE(551), 1, - sym_else_clause, - ACTIONS(1192), 13, - sym__dedent, + ACTIONS(982), 1, + anon_sym_finally, + STATE(610), 1, + sym_finally_clause, + ACTIONS(1233), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47819,7 +48255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1194), 34, + ACTIONS(1235), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47854,17 +48290,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29351] = 5, + [29820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(952), 1, anon_sym_else, - STATE(596), 1, + STATE(552), 1, sym_else_clause, - ACTIONS(1208), 13, + ACTIONS(1229), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47875,7 +48311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1210), 34, + ACTIONS(1231), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47910,14 +48346,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29412] = 5, + [29881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, + ACTIONS(978), 1, anon_sym_else, - STATE(563), 1, + STATE(530), 1, sym_else_clause, - ACTIONS(1212), 13, + ACTIONS(1237), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47931,7 +48367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 34, + ACTIONS(1239), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -47966,14 +48402,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29473] = 5, + [29942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - STATE(531), 1, - sym_else_clause, - ACTIONS(1212), 13, + ACTIONS(1221), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47987,7 +48419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 34, + ACTIONS(1223), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48001,6 +48433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -48022,87 +48456,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29534] = 22, + [29999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(956), 1, + anon_sym_finally, + STATE(571), 1, + sym_finally_clause, + ACTIONS(1243), 13, + sym__dedent, sym__string_start, - ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1216), 1, - anon_sym_RPAREN, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1311), 1, - sym_pattern, - STATE(1689), 1, - sym__patterns, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, + sym_ellipsis, + sym_float, + ACTIONS(1241), 34, anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [29629] = 5, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 1, - anon_sym_else, - STATE(606), 1, - sym_else_clause, - ACTIONS(1186), 13, + ACTIONS(982), 1, + anon_sym_finally, + STATE(535), 1, + sym_finally_clause, + ACTIONS(1243), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48116,7 +48533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1184), 34, + ACTIONS(1241), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48151,17 +48568,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29690] = 5, + [30121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 1, - anon_sym_finally, - STATE(568), 1, - sym_finally_clause, - ACTIONS(1220), 13, + ACTIONS(952), 1, + anon_sym_else, + STATE(581), 1, + sym_else_clause, + ACTIONS(1225), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48172,7 +48589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 34, + ACTIONS(1227), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48207,17 +48624,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29751] = 5, + [30182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_finally, - STATE(533), 1, - sym_finally_clause, - ACTIONS(1220), 13, - sym__dedent, + ACTIONS(978), 1, + anon_sym_else, + STATE(528), 1, + sym_else_clause, + ACTIONS(1245), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48228,7 +48645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 34, + ACTIONS(1247), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48263,69 +48680,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29812] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(277), 1, - anon_sym_COMMA, - ACTIONS(283), 1, - anon_sym_COLON_EQ, - ACTIONS(1224), 1, - sym_identifier, - ACTIONS(285), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(303), 10, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_SEMI, - ACTIONS(307), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(272), 21, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - [29879] = 3, + [30243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(956), 1, + anon_sym_finally, + STATE(584), 1, + sym_finally_clause, + ACTIONS(1233), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -48339,7 +48701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 36, + ACTIONS(1235), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48353,8 +48715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -48376,86 +48736,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29936] = 21, + [30304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(998), 1, - sym_pattern, - STATE(1013), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1226), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [30029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(946), 1, + ACTIONS(952), 1, anon_sym_else, - STATE(555), 1, + STATE(588), 1, sym_else_clause, - ACTIONS(1208), 13, + ACTIONS(1245), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -48469,7 +48757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1210), 34, + ACTIONS(1247), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48504,17 +48792,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30090] = 5, + [30365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 1, - anon_sym_finally, - STATE(587), 1, - sym_finally_clause, - ACTIONS(1198), 13, + ACTIONS(952), 1, + anon_sym_else, + STATE(592), 1, + sym_else_clause, + ACTIONS(1251), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48525,7 +48813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1249), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48560,86 +48848,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30151] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(998), 1, - sym_pattern, - STATE(1013), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1228), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [30244] = 5, + [30426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_else, - STATE(543), 1, - sym_else_clause, - ACTIONS(1188), 13, + ACTIONS(1194), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -48653,7 +48865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 34, + ACTIONS(1196), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48667,6 +48879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -48688,67 +48902,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_COMMA, - ACTIONS(1237), 1, - anon_sym_COLON_EQ, - ACTIONS(1239), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1241), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1235), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [30369] = 3, + [30483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 13, + ACTIONS(952), 1, + anon_sym_else, + STATE(597), 1, + sym_else_clause, + ACTIONS(1198), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -48762,7 +48923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1243), 35, + ACTIONS(1200), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48782,7 +48943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48798,13 +48958,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30425] = 3, + [30544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 13, + ACTIONS(1217), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48815,7 +48975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1249), 35, + ACTIONS(1219), 36, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48829,13 +48989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48851,70 +49012,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30481] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(580), 1, - anon_sym_COLON_EQ, - ACTIONS(582), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(577), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(588), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(272), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [30545] = 3, + [30601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 13, - sym__dedent, + ACTIONS(978), 1, + anon_sym_else, + STATE(553), 1, + sym_else_clause, + ACTIONS(1251), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48925,7 +49033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1251), 35, + ACTIONS(1249), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -48943,7 +49051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -48961,209 +49068,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30601] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1478), 1, - sym_pattern, - STATE(1648), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [30693] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1411), 1, - sym_pattern, - STATE(1612), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [30785] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 1, - anon_sym_COLON_EQ, - ACTIONS(1260), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1255), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1262), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1230), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1235), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [30849] = 3, + [30662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 13, + ACTIONS(952), 1, + anon_sym_else, + STATE(569), 1, + sym_else_clause, + ACTIONS(1237), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -49177,7 +49089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1249), 35, + ACTIONS(1239), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49197,7 +49109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -49213,10 +49124,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30905] = 3, + [30723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 16, + ACTIONS(1050), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -49233,7 +49144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1062), 32, + ACTIONS(1048), 32, sym__newline, anon_sym_DOT, anon_sym_from, @@ -49266,63 +49177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_SEMI, - [30961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1264), 35, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31017] = 3, + [30779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1253), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49336,7 +49194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1270), 35, + ACTIONS(1255), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49354,9 +49212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -49372,17 +49230,37 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31073] = 3, + [30835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 16, + ACTIONS(277), 1, + anon_sym_COMMA, + ACTIONS(283), 1, + anon_sym_COLON_EQ, + ACTIONS(285), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(272), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_SLASH, anon_sym_PERCENT, @@ -49392,14 +49270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 32, + ACTIONS(303), 16, sym__newline, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -49411,24 +49286,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_SEMI, - [31129] = 3, + [30899] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, + sym_primary_expression, + STATE(1504), 1, + sym_pattern, + STATE(1674), 1, + sym_pattern_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [30991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 13, + ACTIONS(1257), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49442,7 +49375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1264), 35, + ACTIONS(1259), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49460,9 +49393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -49478,84 +49411,66 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31185] = 21, + [31047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(1253), 13, + sym__dedent, sym__string_start, - ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1457), 1, - sym_pattern, - STATE(1595), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, + sym_ellipsis, + sym_float, + ACTIONS(1255), 35, anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [31277] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 13, - sym__dedent, + ACTIONS(1261), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49566,7 +49481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 35, + ACTIONS(1263), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49602,17 +49517,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31333] = 7, + [31159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(283), 1, + ACTIONS(1268), 1, anon_sym_COLON_EQ, - ACTIONS(285), 2, + ACTIONS(1270), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(307), 13, + ACTIONS(1272), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49626,7 +49541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(272), 15, + ACTIONS(1209), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -49642,7 +49557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 16, + ACTIONS(1204), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -49659,7 +49574,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [31397] = 21, + [31223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1274), 35, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31279] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -49668,37 +49636,37 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, + ACTIONS(694), 1, sym_identifier, - ACTIONS(696), 1, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, anon_sym_await, - ACTIONS(1218), 1, + ACTIONS(1190), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(1013), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1469), 1, + STATE(1515), 1, sym_pattern, - STATE(1650), 1, + STATE(1750), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(848), 2, + STATE(842), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49707,14 +49675,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(694), 6, + ACTIONS(696), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -49730,13 +49698,119 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [31489] = 3, + [31371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 13, + ACTIONS(1280), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1278), 35, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1030), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_SEMI, + [31483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49747,7 +49821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1243), 35, + ACTIONS(1259), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49783,10 +49857,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31545] = 3, + [31539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1261), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -49800,7 +49874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1270), 35, + ACTIONS(1263), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49836,13 +49910,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31601] = 3, + [31595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 13, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, + sym_primary_expression, + STATE(1531), 1, + sym_pattern, + STATE(1751), 1, + sym_pattern_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [31687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49853,7 +49998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1251), 35, + ACTIONS(1282), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49871,9 +50016,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -49889,10 +50034,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31657] = 3, + [31743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 13, + ACTIONS(1284), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49906,7 +50051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 35, + ACTIONS(1282), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -49942,7 +50087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31713] = 21, + [31799] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -49951,37 +50096,37 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, + ACTIONS(694), 1, sym_identifier, - ACTIONS(696), 1, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, anon_sym_await, - ACTIONS(1218), 1, + ACTIONS(1190), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(1013), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1508), 1, + STATE(1405), 1, sym_pattern, - STATE(1727), 1, + STATE(1718), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(848), 2, + STATE(842), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49990,14 +50135,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(694), 6, + ACTIONS(696), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -50013,7 +50158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [31805] = 21, + [31891] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -50022,37 +50167,37 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, + ACTIONS(694), 1, sym_identifier, - ACTIONS(696), 1, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, anon_sym_await, - ACTIONS(1218), 1, + ACTIONS(1190), 1, anon_sym_STAR, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(1013), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1509), 1, + STATE(1532), 1, sym_pattern, - STATE(1730), 1, + STATE(1678), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(848), 2, + STATE(842), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1001), 3, + STATE(1005), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -50061,14 +50206,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(694), 6, + ACTIONS(696), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -50084,13 +50229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [31897] = 3, + [31983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 13, - sym__dedent, + ACTIONS(1276), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50101,7 +50246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1276), 34, + ACTIONS(1274), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50121,6 +50266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -50136,13 +50282,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31952] = 3, + [32039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, - sym__dedent, + ACTIONS(1280), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50153,7 +50299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1280), 34, + ACTIONS(1278), 35, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50171,6 +50317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -50188,65 +50335,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32007] = 3, + [32095] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, - sym__dedent, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, sym__string_start, + ACTIONS(317), 1, sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(706), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, + sym_primary_expression, + STATE(1530), 1, + sym_pattern, + STATE(1748), 1, + sym_pattern_list, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1284), 34, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32062] = 3, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [32187] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1288), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50257,7 +50423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 34, + ACTIONS(1286), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50292,24 +50458,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32117] = 3, + [32242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1292), 1, + anon_sym_COMMA, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(1297), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1295), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1290), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [32303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 34, + ACTIONS(1303), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50344,13 +50565,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32172] = 3, + [32358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 13, - sym__dedent, + ACTIONS(1305), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50361,7 +50582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1296), 34, + ACTIONS(1307), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50396,10 +50617,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32227] = 3, + [32413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1309), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -50413,7 +50634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 34, + ACTIONS(1311), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50448,13 +50669,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32282] = 3, + [32468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 13, - sym__dedent, + ACTIONS(1313), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50465,7 +50686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 34, + ACTIONS(1315), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50500,13 +50721,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32337] = 3, + [32523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 13, - sym__dedent, + ACTIONS(1317), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50517,7 +50738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 34, + ACTIONS(1319), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50552,13 +50773,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32392] = 3, + [32578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, - sym__dedent, + ACTIONS(1321), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50569,7 +50790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 34, + ACTIONS(1323), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50604,13 +50825,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32447] = 3, + [32633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(980), 13, - sym__dedent, + ACTIONS(1325), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50621,7 +50842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(982), 34, + ACTIONS(1327), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50656,13 +50877,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32502] = 3, + [32688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 13, - sym__dedent, + ACTIONS(1329), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50673,7 +50894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1312), 34, + ACTIONS(1331), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50708,13 +50929,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32557] = 3, + [32743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 13, - sym__dedent, + ACTIONS(1335), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, + anon_sym_EQ, + ACTIONS(1340), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1338), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1333), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [32804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50725,7 +51001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1316), 34, + ACTIONS(1346), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50760,13 +51036,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32612] = 3, + [32859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 13, - sym__dedent, + ACTIONS(1348), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50777,7 +51053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 34, + ACTIONS(1350), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50812,13 +51088,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32667] = 3, + [32914] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 13, - sym__dedent, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, + sym_primary_expression, + STATE(1524), 1, + sym_pattern, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50829,7 +51174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 34, + ACTIONS(1354), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50864,13 +51209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32722] = 3, + [33058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 13, - sym__dedent, + ACTIONS(1356), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50881,7 +51226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 34, + ACTIONS(1358), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50916,13 +51261,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32777] = 3, + [33113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 13, - sym__dedent, + ACTIONS(1360), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50933,7 +51278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1320), 34, + ACTIONS(1362), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -50968,13 +51313,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32832] = 3, + [33168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 13, - sym__dedent, + ACTIONS(1364), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50985,7 +51330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 34, + ACTIONS(1366), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51020,13 +51365,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32887] = 3, + [33223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 13, - sym__dedent, + ACTIONS(1368), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51037,7 +51382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1328), 34, + ACTIONS(1370), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51072,13 +51417,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32942] = 3, + [33278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 13, - sym__dedent, + ACTIONS(950), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51089,7 +51434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1332), 34, + ACTIONS(948), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51124,10 +51469,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32997] = 3, + [33333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1374), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51141,7 +51486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1336), 34, + ACTIONS(1372), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51176,13 +51521,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33052] = 3, + [33388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 13, - sym__dedent, + ACTIONS(1376), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51193,7 +51538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1340), 34, + ACTIONS(1378), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51228,13 +51573,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33107] = 3, + [33443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 13, - sym__dedent, + ACTIONS(1380), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51245,7 +51590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1344), 34, + ACTIONS(1382), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51280,13 +51625,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33162] = 3, + [33498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 13, - sym__dedent, + ACTIONS(1233), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51297,7 +51642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1235), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51332,13 +51677,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33217] = 3, + [33553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 13, - sym__dedent, + ACTIONS(1384), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51349,7 +51694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 34, + ACTIONS(1386), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51384,13 +51729,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33272] = 3, + [33608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 13, - sym__dedent, + ACTIONS(1388), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51401,7 +51746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1352), 34, + ACTIONS(1390), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51436,10 +51781,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33327] = 3, + [33663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 13, + ACTIONS(950), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51453,7 +51798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1356), 34, + ACTIONS(948), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51488,13 +51833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33382] = 3, + [33718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 13, - sym__dedent, + ACTIONS(1392), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51505,7 +51850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1360), 34, + ACTIONS(1394), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51540,13 +51885,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33437] = 3, + [33773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 13, - sym__dedent, + ACTIONS(1396), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51557,7 +51902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 34, + ACTIONS(1398), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51592,13 +51937,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33492] = 3, + [33828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 13, - sym__dedent, + ACTIONS(1400), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51609,7 +51954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 34, + ACTIONS(1402), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51644,10 +51989,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33547] = 3, + [33883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 13, + ACTIONS(1406), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51661,7 +52006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 34, + ACTIONS(1404), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51696,10 +52041,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33602] = 3, + [33938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 13, + ACTIONS(1410), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51713,7 +52058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 34, + ACTIONS(1408), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51748,10 +52093,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33657] = 3, + [33993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 13, + ACTIONS(1414), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51765,7 +52110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1380), 34, + ACTIONS(1412), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51800,10 +52145,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33712] = 3, + [34048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 13, + ACTIONS(1416), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -51817,7 +52162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1320), 34, + ACTIONS(1418), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51852,13 +52197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33767] = 3, + [34103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 13, - sym__dedent, + ACTIONS(1420), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51869,7 +52214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1384), 34, + ACTIONS(1422), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51904,10 +52249,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33822] = 3, + [34158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 13, + ACTIONS(1356), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -51921,7 +52266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1388), 34, + ACTIONS(1358), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -51956,13 +52301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33877] = 3, + [34213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 13, - sym__dedent, + ACTIONS(1424), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51973,7 +52318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1392), 34, + ACTIONS(1426), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52008,13 +52353,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33932] = 3, + [34268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(1364), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52025,7 +52370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 34, + ACTIONS(1366), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52060,10 +52405,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33987] = 3, + [34323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 13, + ACTIONS(1384), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52077,7 +52422,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1396), 34, + ACTIONS(1386), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1430), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52112,13 +52509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34042] = 3, + [34433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 13, + ACTIONS(1243), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52129,7 +52526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1402), 34, + ACTIONS(1241), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52164,13 +52561,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34097] = 3, + [34488] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1406), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52216,10 +52613,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34152] = 3, + [34543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(960), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1243), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -52233,7 +52682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1328), 34, + ACTIONS(1241), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52268,13 +52717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34207] = 3, + [34653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1410), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52320,10 +52769,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34262] = 3, + [34708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 13, + ACTIONS(1434), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52337,7 +52786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1412), 34, + ACTIONS(1432), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52372,10 +52821,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34317] = 3, + [34763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 13, + ACTIONS(1438), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52389,7 +52838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1416), 34, + ACTIONS(1436), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52424,13 +52873,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34372] = 3, + [34818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1313), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52441,7 +52890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1332), 34, + ACTIONS(1315), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52476,65 +52925,166 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34427] = 6, + [34873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 1, - anon_sym_COMMA, - ACTIONS(1429), 1, - anon_sym_EQ, - ACTIONS(1427), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1425), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(1388), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 16, - sym__newline, - anon_sym_DOT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1390), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1317), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1319), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [34488] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [35038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 13, + ACTIONS(1321), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52548,7 +53098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1431), 34, + ACTIONS(1323), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52583,13 +53133,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34543] = 3, + [35093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 13, - sym__dedent, + ACTIONS(1440), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52600,7 +53150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1435), 34, + ACTIONS(1442), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52635,10 +53185,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34598] = 3, + [35148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 13, + ACTIONS(1344), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52652,7 +53202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 34, + ACTIONS(1346), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52687,10 +53237,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34653] = 3, + [35203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 13, + ACTIONS(1348), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52704,7 +53254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1443), 34, + ACTIONS(1350), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52739,10 +53289,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34708] = 3, + [35258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 13, + ACTIONS(1360), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52756,7 +53306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1447), 34, + ACTIONS(1362), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52791,13 +53341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34763] = 3, + [35313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(1368), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52808,7 +53358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1336), 34, + ACTIONS(1370), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52843,10 +53393,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34818] = 3, + [35368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 13, + ACTIONS(1376), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52860,7 +53410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1451), 34, + ACTIONS(1378), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52895,10 +53445,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34873] = 3, + [35423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 13, + ACTIONS(1233), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -52912,7 +53462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 34, + ACTIONS(1235), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52947,13 +53497,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34928] = 3, + [35478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 13, + ACTIONS(1392), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52964,7 +53514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(942), 34, + ACTIONS(1394), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -52999,13 +53549,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [34983] = 3, + [35533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(1400), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53016,7 +53566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1340), 34, + ACTIONS(1402), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53051,13 +53601,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35038] = 3, + [35588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(1416), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53068,7 +53618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1344), 34, + ACTIONS(1418), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53103,13 +53653,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35093] = 3, + [35643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 13, + ACTIONS(1420), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53120,7 +53670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1422), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53155,13 +53705,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35148] = 3, + [35698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 13, + ACTIONS(1424), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53172,7 +53722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1461), 34, + ACTIONS(1426), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53207,68 +53757,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35203] = 6, + [35753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_COMMA, - ACTIONS(1472), 1, - anon_sym_EQ, - ACTIONS(1470), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1468), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1463), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [35264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 13, + ACTIONS(1440), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53279,7 +53774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 34, + ACTIONS(1442), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53314,13 +53809,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35319] = 3, + [35808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 13, + ACTIONS(1446), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53331,7 +53826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1352), 34, + ACTIONS(1444), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53366,13 +53861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35374] = 3, + [35863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1474), 13, + ACTIONS(1450), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53383,7 +53878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1476), 34, + ACTIONS(1448), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53418,13 +53913,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35429] = 3, + [35918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 13, + ACTIONS(1454), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53435,7 +53930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1356), 34, + ACTIONS(1452), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53470,10 +53965,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35484] = 3, + [35973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 13, + ACTIONS(1446), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -53487,7 +53982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1360), 34, + ACTIONS(1444), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53522,13 +54017,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35539] = 3, + [36028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 13, + ACTIONS(1458), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53539,7 +54034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 34, + ACTIONS(1456), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53574,13 +54069,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35594] = 3, + [36083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(1462), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53591,7 +54086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1280), 34, + ACTIONS(1460), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53626,13 +54121,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35649] = 3, + [36138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 13, + ACTIONS(1466), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53643,7 +54138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 34, + ACTIONS(1464), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53678,13 +54173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35704] = 3, + [36193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 13, + ACTIONS(1470), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53695,7 +54190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 34, + ACTIONS(1468), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53730,13 +54225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35759] = 3, + [36248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 13, + ACTIONS(1474), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53747,7 +54242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 34, + ACTIONS(1472), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53782,68 +54277,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35814] = 6, + [36303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 1, - anon_sym_COMMA, - ACTIONS(1239), 1, - anon_sym_EQ, - ACTIONS(1241), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1235), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [35875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 13, + ACTIONS(1352), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53854,7 +54294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1380), 34, + ACTIONS(1354), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53889,13 +54329,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35930] = 3, + [36358] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_await, + ACTIONS(1190), 1, + anon_sym_STAR, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(1002), 1, + sym_pattern, + STATE(1017), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1005), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1380), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53906,7 +54415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1284), 34, + ACTIONS(1382), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -53941,68 +54450,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35985] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1260), 1, - anon_sym_EQ, - ACTIONS(1255), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1230), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1262), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1235), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [36046] = 3, + [36502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 13, + ACTIONS(1396), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54013,7 +54467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1384), 34, + ACTIONS(1398), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54048,13 +54502,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36101] = 3, + [36557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 13, + ACTIONS(1428), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54065,7 +54519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1388), 34, + ACTIONS(1430), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54100,79 +54554,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36156] = 20, + [36612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(1414), 13, sym__string_start, - ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(704), 1, - anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1495), 1, - sym_pattern, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(694), 6, + sym_ellipsis, + sym_float, + ACTIONS(1412), 34, anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36245] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 13, + ACTIONS(1450), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54186,7 +54623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1392), 34, + ACTIONS(1448), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54221,82 +54658,169 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36300] = 20, + [36722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(1478), 13, + sym__dedent, sym__string_start, - ACTIONS(317), 1, sym__template_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(696), 1, anon_sym_LPAREN, - ACTIONS(704), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(1218), 1, - anon_sym_STAR, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(998), 1, - sym_pattern, - STATE(1013), 1, - sym_primary_expression, - ACTIONS(309), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(848), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + ACTIONS(1476), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1482), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(1001), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, + sym_ellipsis, + sym_float, + ACTIONS(1480), 34, + anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(694), 6, + [36832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1303), 34, anon_sym_lazy, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(725), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36389] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 13, + ACTIONS(1305), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54307,7 +54831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1276), 34, + ACTIONS(1307), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54342,13 +54866,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36444] = 3, + [36942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 13, + ACTIONS(1309), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54359,7 +54883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1396), 34, + ACTIONS(1311), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54394,10 +54918,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36499] = 3, + [36997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 13, + ACTIONS(1454), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54411,7 +54935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1404), 34, + ACTIONS(1452), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54446,10 +54970,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36554] = 3, + [37052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 13, + ACTIONS(1470), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54463,7 +54987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1408), 34, + ACTIONS(1468), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54498,13 +55022,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36609] = 3, + [37107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 13, + ACTIONS(1325), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54515,7 +55039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1412), 34, + ACTIONS(1327), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54550,13 +55074,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36664] = 3, + [37162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 13, + ACTIONS(1329), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -54567,7 +55091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1416), 34, + ACTIONS(1331), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54602,10 +55126,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36719] = 3, + [37217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 13, + ACTIONS(1434), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54619,7 +55143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1431), 34, + ACTIONS(1432), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54654,10 +55178,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36774] = 3, + [37272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 13, + ACTIONS(1374), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54671,7 +55195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1435), 34, + ACTIONS(1372), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54706,10 +55230,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36829] = 3, + [37327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 13, + ACTIONS(1478), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54723,7 +55247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1296), 34, + ACTIONS(1476), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54758,10 +55282,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36884] = 3, + [37382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 13, + ACTIONS(1482), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54775,7 +55299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 34, + ACTIONS(1480), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54810,10 +55334,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36939] = 3, + [37437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 13, + ACTIONS(1288), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54827,7 +55351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1443), 34, + ACTIONS(1286), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54862,10 +55386,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36994] = 3, + [37492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 13, + ACTIONS(1458), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54879,7 +55403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1447), 34, + ACTIONS(1456), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54914,10 +55438,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37049] = 3, + [37547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 13, + ACTIONS(1462), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54931,7 +55455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 34, + ACTIONS(1460), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -54966,10 +55490,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37104] = 3, + [37602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 13, + ACTIONS(1484), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -54983,7 +55507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1451), 34, + ACTIONS(1486), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -55018,10 +55542,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37159] = 3, + [37657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 13, + ACTIONS(1474), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -55035,7 +55559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 34, + ACTIONS(1472), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -55070,10 +55594,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37214] = 3, + [37712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 13, + ACTIONS(1466), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -55087,7 +55611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 34, + ACTIONS(1464), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -55122,114 +55646,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37269] = 3, + [37767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1222), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1270), 1, + anon_sym_EQ, + ACTIONS(1272), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1209), 15, anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(982), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1204), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37379] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [37828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 13, + ACTIONS(1438), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -55243,7 +55718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1312), 34, + ACTIONS(1436), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -55278,10 +55753,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37434] = 3, + [37883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 13, + ACTIONS(1484), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -55295,7 +55770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1402), 34, + ACTIONS(1486), 34, anon_sym_lazy, anon_sym_import, anon_sym_from, @@ -55330,215 +55805,117 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [37489] = 3, + [37938] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(1206), 1, + anon_sym_COMMA, + ACTIONS(1488), 1, + anon_sym_COLON_EQ, + ACTIONS(1213), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1211), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1204), 14, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(942), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1474), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1209), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1476), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37599] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [38000] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(587), 1, + anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_COLON_EQ, + ACTIONS(592), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(598), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(303), 14, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1316), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(272), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1461), 34, - anon_sym_lazy, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37709] = 18, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [38062] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -55547,31 +55924,31 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(1478), 1, + ACTIONS(1490), 1, sym_identifier, - ACTIONS(1484), 1, + ACTIONS(1496), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(1013), 1, + STATE(1017), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(859), 2, + STATE(860), 2, sym_attribute, sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1482), 3, + ACTIONS(1494), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -55580,14 +55957,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1480), 6, + ACTIONS(1492), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(720), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -55603,50 +55980,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [37792] = 16, + [38145] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(1486), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + anon_sym_await, + ACTIONS(1498), 1, anon_sym_not, - STATE(793), 1, - sym_string, - STATE(794), 1, + STATE(772), 1, sym_template_string, - STATE(838), 1, + STATE(779), 1, + sym_string, + STATE(798), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55664,50 +56041,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [37869] = 16, + [38222] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(1488), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(1500), 1, anon_sym_not, - STATE(766), 1, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(809), 1, + STATE(821), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55725,50 +56102,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [37946] = 16, + [38299] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_LBRACE, - ACTIONS(83), 1, - sym__string_start, - ACTIONS(85), 1, - sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(1490), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + ACTIONS(1502), 1, anon_sym_not, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(781), 1, sym_string, - STATE(818), 1, + STATE(782), 1, + sym_template_string, + STATE(810), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55786,50 +56163,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38023] = 16, + [38376] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1492), 1, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1504), 1, anon_sym_not, - STATE(645), 1, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(758), 1, + STATE(856), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55847,7 +56224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38100] = 16, + [38453] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -55862,13 +56239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(610), 1, anon_sym_await, - ACTIONS(1494), 1, + ACTIONS(1506), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(748), 1, + STATE(764), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -55883,14 +56260,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55908,7 +56285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38177] = 16, + [38530] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -55917,24 +56294,24 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - ACTIONS(1496), 1, + ACTIONS(1508), 1, anon_sym_not, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(805), 1, + STATE(757), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -55944,14 +56321,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55969,48 +56346,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38254] = 15, + [38607] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(824), 1, + STATE(698), 1, + sym_template_string, + STATE(745), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56028,107 +56405,97 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38328] = 15, + [38681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, - sym__string_start, - ACTIONS(632), 1, + ACTIONS(1514), 1, sym__template_string_start, - STATE(766), 1, - sym_string, - STATE(776), 1, + STATE(627), 2, sym_template_string, - STATE(819), 1, - sym_primary_expression, - ACTIONS(626), 2, - sym_ellipsis, - sym_float, - ACTIONS(620), 3, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1512), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1510), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(612), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(614), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(878), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [38402] = 15, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [38735] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(820), 1, + STATE(833), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56146,48 +56513,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38476] = 15, + [38809] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(652), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(856), 1, + STATE(864), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56205,7 +56572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38550] = 15, + [38883] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -56220,11 +56587,11 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(804), 1, + STATE(813), 1, sym_primary_expression, ACTIONS(626), 2, sym_ellipsis, @@ -56246,7 +56613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56264,48 +56631,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38624] = 15, + [38957] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(822), 1, + STATE(863), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56323,52 +56690,54 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38698] = 15, + [39031] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(766), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(1490), 1, + sym_identifier, + ACTIONS(1496), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(801), 1, + STATE(1017), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + STATE(860), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(1492), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(720), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -56382,48 +56751,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38772] = 15, + [39109] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(737), 1, + STATE(868), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56441,7 +56810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38846] = 15, + [39183] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -56450,17 +56819,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(779), 1, sym_string, - STATE(821), 1, + STATE(797), 1, sym_primary_expression, ACTIONS(77), 2, sym_ellipsis, @@ -56475,14 +56844,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56500,48 +56869,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38920] = 15, + [39257] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(622), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(766), 1, + STATE(790), 1, sym_string, - STATE(776), 1, + STATE(791), 1, sym_template_string, - STATE(802), 1, + STATE(865), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56559,54 +56928,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [38994] = 17, + [39331] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(1498), 1, - sym_identifier, - ACTIONS(1502), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(1013), 1, + STATE(814), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - STATE(1004), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(612), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1500), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(949), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56620,7 +56987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39072] = 15, + [39405] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -56629,17 +56996,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(779), 1, sym_string, - STATE(790), 1, + STATE(798), 1, sym_primary_expression, ACTIONS(77), 2, sym_ellipsis, @@ -56654,14 +57021,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56679,48 +57046,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39146] = 15, + [39479] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_LBRACE, - ACTIONS(83), 1, - sym__string_start, - ACTIONS(85), 1, - sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(789), 1, + STATE(782), 1, + sym_template_string, + STATE(815), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56738,52 +57105,54 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39220] = 15, + [39553] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(1517), 1, + sym_identifier, + ACTIONS(1521), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(791), 1, + STATE(698), 1, + sym_template_string, + STATE(1017), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + STATE(1013), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(1519), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(720), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -56797,54 +57166,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39294] = 17, + [39631] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(1478), 1, - sym_identifier, - ACTIONS(1484), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(1013), 1, + STATE(779), 1, + sym_string, + STATE(801), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(859), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(79), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1480), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 15, + STATE(950), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56858,48 +57225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39372] = 15, + [39705] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(652), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(831), 1, + STATE(845), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56917,48 +57284,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39446] = 15, + [39779] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_LBRACE, - ACTIONS(83), 1, - sym__string_start, - ACTIONS(85), 1, - sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(798), 1, + STATE(782), 1, + sym_template_string, + STATE(804), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56976,48 +57343,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39520] = 15, + [39853] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - STATE(793), 1, - sym_string, - STATE(794), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + anon_sym_await, + STATE(772), 1, sym_template_string, - STATE(832), 1, + STATE(779), 1, + sym_string, + STATE(818), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57035,48 +57402,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39594] = 15, + [39927] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - STATE(793), 1, - sym_string, - STATE(794), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + anon_sym_await, + STATE(772), 1, sym_template_string, - STATE(838), 1, + STATE(779), 1, + sym_string, + STATE(796), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57094,48 +57461,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39668] = 15, + [40001] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(817), 1, + STATE(698), 1, + sym_template_string, + STATE(751), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57153,48 +57520,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39742] = 15, + [40075] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(85), 1, sym__template_string_start, - STATE(793), 1, - sym_string, - STATE(794), 1, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + anon_sym_await, + STATE(772), 1, sym_template_string, - STATE(840), 1, + STATE(779), 1, + sym_string, + STATE(803), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57212,7 +57579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39816] = 15, + [40149] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -57221,17 +57588,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(779), 1, sym_string, - STATE(818), 1, + STATE(788), 1, sym_primary_expression, ACTIONS(77), 2, sym_ellipsis, @@ -57246,14 +57613,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57271,7 +57638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39890] = 15, + [40223] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -57280,17 +57647,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(85), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(769), 1, + STATE(772), 1, sym_template_string, - STATE(775), 1, + STATE(779), 1, sym_string, - STATE(823), 1, + STATE(800), 1, sym_primary_expression, ACTIONS(77), 2, sym_ellipsis, @@ -57305,14 +57672,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57330,56 +57697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [39964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - STATE(675), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1235), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40018] = 15, + [40297] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -57388,22 +57706,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(755), 1, + STATE(752), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57413,14 +57731,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57438,7 +57756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40092] = 15, + [40371] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -57447,22 +57765,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(756), 1, + STATE(764), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57472,14 +57790,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57497,48 +57815,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40166] = 15, + [40445] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(758), 1, + STATE(816), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57556,48 +57874,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40240] = 15, + [40519] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(761), 1, + STATE(817), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57615,35 +57933,35 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40314] = 15, + [40593] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(762), 1, + STATE(779), 1, + sym_string, + STATE(806), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, @@ -57656,7 +57974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57674,7 +57992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40388] = 15, + [40667] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -57683,22 +58001,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(743), 1, + STATE(742), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57708,14 +58026,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57733,7 +58051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40462] = 15, + [40741] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -57742,22 +58060,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(739), 1, + STATE(743), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57767,14 +58085,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57792,7 +58110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40536] = 15, + [40815] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -57801,22 +58119,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(742), 1, + STATE(744), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57826,14 +58144,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57851,7 +58169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40610] = 15, + [40889] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -57866,11 +58184,11 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(809), 1, + STATE(830), 1, sym_primary_expression, ACTIONS(626), 2, sym_ellipsis, @@ -57892,7 +58210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57910,107 +58228,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40684] = 15, + [40963] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_await, - STATE(645), 1, - sym_string, - STATE(658), 1, - sym_template_string, - STATE(745), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(573), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [40758] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(575), 1, - anon_sym_LPAREN, - ACTIONS(586), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_await, - STATE(645), 1, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(757), 1, + STATE(867), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58028,7 +58287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40832] = 15, + [41037] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58037,22 +58296,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(575), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(586), 1, + ACTIONS(608), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(735), 1, + STATE(746), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(606), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58062,14 +58321,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58087,97 +58346,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [40906] = 5, + [41111] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym__template_string_start, - STATE(676), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1235), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 33, - anon_sym_DOT, + ACTIONS(650), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(656), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40960] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(598), 1, - anon_sym_LBRACK, - ACTIONS(600), 1, - anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(790), 1, sym_string, - STATE(785), 1, + STATE(791), 1, + sym_template_string, + STATE(866), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58195,48 +58405,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41034] = 15, + [41185] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(793), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(855), 1, + STATE(819), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58254,48 +58464,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41108] = 15, + [41259] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(793), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(866), 1, + STATE(820), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58313,48 +58523,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41182] = 15, + [41333] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(793), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(833), 1, + STATE(821), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58372,48 +58582,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41256] = 15, + [41407] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(85), 1, + ACTIONS(317), 1, sym__template_string_start, - ACTIONS(594), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(598), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(600), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(769), 1, - sym_template_string, - STATE(775), 1, + STATE(694), 1, sym_string, - STATE(797), 1, + STATE(698), 1, + sym_template_string, + STATE(823), 1, sym_primary_expression, - ACTIONS(77), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(49), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(79), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(592), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(920), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58431,48 +58641,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41330] = 15, + [41481] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_await, - ACTIONS(654), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(793), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(845), 1, + STATE(824), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58490,7 +58700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41404] = 15, + [41555] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58499,22 +58709,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(746), 1, + STATE(825), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58524,14 +58734,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58549,7 +58759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41478] = 15, + [41629] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58558,22 +58768,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(747), 1, + STATE(826), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58583,6 +58793,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, + ACTIONS(583), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [41703] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym__string_start, + ACTIONS(85), 1, + sym__template_string_start, + ACTIONS(575), 1, + anon_sym_LPAREN, + ACTIONS(579), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + anon_sym_await, + STATE(772), 1, + sym_template_string, + STATE(779), 1, + sym_string, + STATE(802), 1, + sym_primary_expression, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(79), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, ACTIONS(573), 6, anon_sym_lazy, anon_sym_print, @@ -58590,7 +58859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58608,7 +58877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41552] = 15, + [41777] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58623,11 +58892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(748), 1, + STATE(740), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58642,14 +58911,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58667,7 +58936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41626] = 15, + [41851] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58676,22 +58945,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(749), 1, + STATE(827), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58701,14 +58970,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58726,7 +58995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41700] = 15, + [41925] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58735,22 +59004,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(750), 1, + STATE(828), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58760,14 +59029,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58785,7 +59054,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41774] = 15, + [41999] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_LPAREN, + ACTIONS(622), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, + sym_string, + STATE(782), 1, + sym_template_string, + STATE(809), 1, + sym_primary_expression, + ACTIONS(626), 2, + sym_ellipsis, + sym_float, + ACTIONS(620), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(612), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(614), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(949), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [42073] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58794,22 +59122,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(642), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(751), 1, + STATE(829), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(640), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58819,14 +59147,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58844,7 +59172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41848] = 15, + [42147] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58853,22 +59181,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(753), 1, + STATE(755), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58878,14 +59206,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58903,7 +59231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41922] = 15, + [42221] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -58918,11 +59246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(754), 1, + STATE(741), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58937,14 +59265,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58962,48 +59290,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [41996] = 15, + [42295] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(766), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(799), 1, + STATE(756), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59021,48 +59349,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42070] = 15, + [42369] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(293), 1, anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(632), 1, + ACTIONS(317), 1, sym__template_string_start, - STATE(766), 1, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(596), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_await, + STATE(694), 1, sym_string, - STATE(776), 1, + STATE(698), 1, sym_template_string, - STATE(812), 1, + STATE(757), 1, sym_primary_expression, - ACTIONS(626), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(620), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(612), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(614), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59080,146 +59408,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42144] = 5, + [42443] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1506), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1504), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42198] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(317), 1, sym__template_string_start, - STATE(693), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1510), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1508), 33, - anon_sym_DOT, + ACTIONS(585), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(596), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42252] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(646), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - anon_sym_LBRACE, - ACTIONS(652), 1, + ACTIONS(600), 1, anon_sym_await, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - STATE(793), 1, + STATE(694), 1, sym_string, - STATE(794), 1, + STATE(698), 1, sym_template_string, - STATE(846), 1, + STATE(739), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59237,48 +59467,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42326] = 15, + [42517] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(803), 1, + STATE(811), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59296,7 +59526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42400] = 15, + [42591] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59305,22 +59535,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(826), 1, + STATE(758), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59330,14 +59560,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59355,7 +59585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42474] = 15, + [42665] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59364,22 +59594,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(805), 1, + STATE(759), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59389,14 +59619,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59414,7 +59644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42548] = 15, + [42739] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59423,22 +59653,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(806), 1, + STATE(760), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59448,14 +59678,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59473,7 +59703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42622] = 15, + [42813] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59482,22 +59712,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(807), 1, + STATE(761), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59507,14 +59737,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59532,48 +59762,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42696] = 15, + [42887] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + STATE(790), 1, sym_string, - STATE(658), 1, + STATE(791), 1, sym_template_string, - STATE(808), 1, + STATE(862), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59591,7 +59821,56 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42770] = 15, + [42961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + sym__string_start, + STATE(685), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1525), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1523), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43015] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59600,22 +59879,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(810), 1, + STATE(762), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59625,14 +59904,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59650,7 +59929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42844] = 15, + [43089] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59659,22 +59938,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(811), 1, + STATE(763), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59684,14 +59963,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59709,66 +59988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [42918] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(622), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, - sym__string_start, - ACTIONS(632), 1, - sym__template_string_start, - STATE(766), 1, - sym_string, - STATE(776), 1, - sym_template_string, - STATE(815), 1, - sym_primary_expression, - ACTIONS(626), 2, - sym_ellipsis, - sym_float, - ACTIONS(620), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(612), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(614), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(878), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [42992] = 15, + [43163] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -59777,22 +59997,22 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(585), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(596), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(600), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(813), 1, + STATE(765), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59802,14 +60022,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59827,48 +60047,48 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43066] = 15, + [43237] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(658), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(622), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - STATE(645), 1, + ACTIONS(630), 1, + sym__string_start, + ACTIONS(632), 1, + sym__template_string_start, + STATE(781), 1, sym_string, - STATE(658), 1, + STATE(782), 1, sym_template_string, - STATE(814), 1, + STATE(812), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(626), 2, sym_ellipsis, sym_float, - ACTIONS(662), 3, + ACTIONS(620), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(612), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(614), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59886,94 +60106,84 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43140] = 15, + [43311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - STATE(645), 1, + STATE(685), 2, sym_string, - STATE(658), 1, - sym_template_string, - STATE(825), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(662), 3, + aux_sym_concatenated_string_repeat1, + ACTIONS(1532), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1530), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(573), 6, - anon_sym_lazy, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(725), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [43214] = 15, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43365] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(83), 1, sym__string_start, - ACTIONS(317), 1, + ACTIONS(85), 1, sym__template_string_start, - ACTIONS(602), 1, + ACTIONS(575), 1, anon_sym_LPAREN, - ACTIONS(608), 1, + ACTIONS(579), 1, anon_sym_LBRACK, - ACTIONS(610), 1, + ACTIONS(581), 1, anon_sym_await, - STATE(645), 1, - sym_string, - STATE(658), 1, + STATE(772), 1, sym_template_string, - STATE(744), 1, + STATE(779), 1, + sym_string, + STATE(807), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(606), 3, + ACTIONS(49), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, @@ -59986,7 +60196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(950), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60004,7 +60214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43288] = 15, + [43439] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -60019,11 +60229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(610), 1, anon_sym_await, - STATE(645), 1, + STATE(694), 1, sym_string, - STATE(658), 1, + STATE(698), 1, sym_template_string, - STATE(736), 1, + STATE(748), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -60038,14 +60248,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(573), 6, + ACTIONS(583), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(725), 17, + STATE(720), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60063,22 +60273,22 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43362] = 5, + [43513] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, - sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1514), 6, + ACTIONS(317), 1, + sym__template_string_start, + STATE(627), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1536), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1512), 33, + ACTIONS(1534), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60112,22 +60322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43416] = 5, + [43567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, - sym__template_string_start, - STATE(693), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1521), 6, + ACTIONS(315), 1, + sym__string_start, + STATE(690), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1209), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 33, + ACTIONS(1204), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60161,7 +60371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43470] = 15, + [43621] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -60176,11 +60386,11 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(632), 1, sym__template_string_start, - STATE(766), 1, + STATE(781), 1, sym_string, - STATE(776), 1, + STATE(782), 1, sym_template_string, - STATE(816), 1, + STATE(810), 1, sym_primary_expression, ACTIONS(626), 2, sym_ellipsis, @@ -60202,7 +60412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(878), 17, + STATE(949), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60220,48 +60430,107 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43544] = 15, + [43695] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(650), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(656), 1, anon_sym_LBRACK, - ACTIONS(648), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(652), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + STATE(790), 1, + sym_string, + STATE(791), 1, + sym_template_string, + STATE(856), 1, + sym_primary_expression, + ACTIONS(660), 2, + sym_ellipsis, + sym_float, + ACTIONS(654), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(646), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(648), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(985), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [43769] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, + anon_sym_LPAREN, ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, sym__template_string_start, - STATE(793), 1, + STATE(790), 1, sym_string, - STATE(794), 1, + STATE(791), 1, sym_template_string, - STATE(841), 1, + STATE(844), 1, sym_primary_expression, - ACTIONS(650), 2, + ACTIONS(660), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(654), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(636), 5, + ACTIONS(646), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(638), 6, + ACTIONS(648), 6, anon_sym_lazy, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(970), 17, + STATE(985), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60279,18 +60548,22 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [43618] = 3, + [43843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 6, + ACTIONS(317), 1, + sym__template_string_start, + STATE(693), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1209), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1526), 34, - sym__string_start, + ACTIONS(1204), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60324,18 +60597,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43666] = 3, + [43897] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 6, + ACTIONS(293), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACK, + ACTIONS(644), 1, + anon_sym_await, + STATE(694), 1, + sym_string, + STATE(698), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(640), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 6, + anon_sym_lazy, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(720), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [43971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1540), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 34, - sym__string_start, + ACTIONS(1538), 34, + sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60369,17 +60701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43714] = 3, + [44019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 6, + ACTIONS(1544), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1534), 34, + ACTIONS(1542), 34, sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -60414,18 +60746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43762] = 3, + [44067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 6, + ACTIONS(1548), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1538), 34, - sym__template_string_start, + ACTIONS(1546), 34, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60459,23 +60791,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43810] = 3, + [44115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 6, + ACTIONS(1552), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 33, + ACTIONS(1550), 34, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -60501,19 +60836,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [43857] = 3, + [44163] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 6, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1566), 1, + anon_sym_PIPE, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1572), 1, + anon_sym_STAR_STAR, + ACTIONS(1574), 1, + anon_sym_EQ, + ACTIONS(1578), 1, + anon_sym_not, + ACTIONS(1580), 1, + anon_sym_AMP, + ACTIONS(1582), 1, + anon_sym_CARET, + ACTIONS(1586), 1, + anon_sym_is, + STATE(997), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1560), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1562), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1568), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1576), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1564), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1558), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [44244] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1574), 1, + anon_sym_as, + ACTIONS(1594), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, + anon_sym_STAR_STAR, + ACTIONS(1602), 1, + anon_sym_not, + ACTIONS(1604), 1, + anon_sym_AMP, + ACTIONS(1606), 1, + anon_sym_CARET, + ACTIONS(1610), 1, + anon_sym_is, + STATE(998), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1588), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1590), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1596), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_LT, + anon_sym_GT, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1600), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1592), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1558), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [44325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 33, + ACTIONS(303), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60547,17 +61002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43904] = 3, + [44372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 6, + ACTIONS(1614), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 33, + ACTIONS(1612), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60591,17 +61046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43951] = 3, + [44419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 6, + ACTIONS(1618), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1550), 33, + ACTIONS(1616), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60635,17 +61090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43998] = 3, + [44466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 6, + ACTIONS(1622), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 33, + ACTIONS(1620), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60679,17 +61134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44045] = 3, + [44513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 6, + ACTIONS(1626), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 33, + ACTIONS(1624), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60723,17 +61178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44092] = 3, + [44560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 6, + ACTIONS(1630), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1558), 33, + ACTIONS(1628), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60767,17 +61222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44139] = 3, + [44607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(272), 6, + ACTIONS(1634), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 33, + ACTIONS(1632), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60811,17 +61266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44186] = 3, + [44654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 6, + ACTIONS(1638), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 33, + ACTIONS(1636), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60855,17 +61310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44233] = 3, + [44701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 6, + ACTIONS(1642), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 33, + ACTIONS(1640), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60899,17 +61354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44280] = 3, + [44748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 6, + ACTIONS(1646), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1570), 33, + ACTIONS(1644), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60943,17 +61398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44327] = 3, + [44795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 6, + ACTIONS(1650), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 33, + ACTIONS(1648), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60987,17 +61442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44374] = 3, + [44842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 6, + ACTIONS(1654), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1574), 33, + ACTIONS(1652), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61031,17 +61486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44421] = 3, + [44889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 6, + ACTIONS(1658), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 33, + ACTIONS(1656), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61075,17 +61530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44468] = 3, + [44936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 6, + ACTIONS(1662), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1582), 33, + ACTIONS(1660), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61119,17 +61574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44515] = 3, + [44983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 6, + ACTIONS(1209), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 33, + ACTIONS(1204), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61163,17 +61618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44562] = 3, + [45030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 6, + ACTIONS(1666), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1590), 33, + ACTIONS(1664), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61207,17 +61662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44609] = 3, + [45077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 6, + ACTIONS(1670), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1594), 33, + ACTIONS(1668), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61251,17 +61706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44656] = 3, + [45124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 6, + ACTIONS(1674), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1598), 33, + ACTIONS(1672), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61295,84 +61750,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44703] = 20, + [45171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1678), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1676), 33, anon_sym_DOT, - ACTIONS(1604), 1, anon_sym_LPAREN, - ACTIONS(1614), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1618), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1620), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1622), 1, - anon_sym_EQ, - ACTIONS(1626), 1, + anon_sym_AT, anon_sym_not, - ACTIONS(1628), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1630), 1, anon_sym_CARET, - ACTIONS(1634), 1, - anon_sym_is, - STATE(993), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1616), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1632), 2, - anon_sym_LT, - anon_sym_GT, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1624), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1612), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1606), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [44784] = 3, + anon_sym_is, + [45218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 6, + ACTIONS(1682), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 33, + ACTIONS(1680), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -61398,19 +61838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [44831] = 3, + [45265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 6, + ACTIONS(1686), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1636), 33, + ACTIONS(1684), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61444,17 +61882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44878] = 3, + [45312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 6, + ACTIONS(1690), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 33, + ACTIONS(1688), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61488,17 +61926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44925] = 3, + [45359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1646), 6, + ACTIONS(1690), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 33, + ACTIONS(1688), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61532,17 +61970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44972] = 3, + [45406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 6, + ACTIONS(1694), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 33, + ACTIONS(1692), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61576,17 +62014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45019] = 3, + [45453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 6, + ACTIONS(1698), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 33, + ACTIONS(1696), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61620,78 +62058,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45066] = 20, + [45500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1622), 1, + ACTIONS(1690), 6, anon_sym_as, - ACTIONS(1658), 1, - anon_sym_PIPE, - ACTIONS(1662), 1, - anon_sym_STAR_STAR, - ACTIONS(1666), 1, - anon_sym_not, - ACTIONS(1668), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1674), 1, - anon_sym_is, - STATE(990), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1652), 2, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, anon_sym_LT, anon_sym_GT, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1664), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1656), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1606), 9, + ACTIONS(1688), 33, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, anon_sym_and, anon_sym_or, - [45147] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 6, + ACTIONS(1702), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1676), 33, + ACTIONS(1700), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61725,17 +62146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45194] = 3, + [45594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 6, + ACTIONS(1702), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1680), 33, + ACTIONS(1700), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61769,17 +62190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45241] = 3, + [45641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 6, + ACTIONS(1706), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 33, + ACTIONS(1704), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61813,17 +62234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45288] = 3, + [45688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 6, + ACTIONS(1702), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 33, + ACTIONS(1700), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61857,25 +62278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45335] = 3, + [45735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 6, + ACTIONS(1338), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1684), 33, + ACTIONS(1333), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -61901,25 +62320,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45382] = 3, + anon_sym_COLON2, + sym_type_conversion, + [45782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 6, + ACTIONS(1295), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 33, + ACTIONS(1290), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -61945,17 +62364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45429] = 3, + anon_sym_COLON2, + sym_type_conversion, + [45829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 6, + ACTIONS(1710), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 33, + ACTIONS(1708), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61989,136 +62410,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45476] = 3, + [45876] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1696), 33, + ACTIONS(1554), 1, anon_sym_DOT, + ACTIONS(1556), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1570), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1580), 1, anon_sym_AMP, + ACTIONS(1582), 1, anon_sym_CARET, + ACTIONS(1560), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1562), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45523] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1620), 1, - anon_sym_STAR_STAR, - STATE(734), 2, + ACTIONS(1568), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1702), 5, - anon_sym_STAR, + ACTIONS(1576), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1700), 27, + ACTIONS(1712), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45579] = 15, + [45944] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, + ACTIONS(1594), 1, anon_sym_PIPE, - ACTIONS(1662), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1668), 1, + ACTIONS(1604), 1, anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1606), 1, anon_sym_CARET, - ACTIONS(1652), 2, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 2, + ACTIONS(1590), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1660), 2, + ACTIONS(1596), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1664), 3, + ACTIONS(1600), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1706), 3, + ACTIONS(1718), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1704), 17, + ACTIONS(1716), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62136,173 +62519,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45649] = 8, + [46014] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1594), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - STATE(734), 2, + ACTIONS(1604), 1, + anon_sym_AMP, + ACTIONS(1606), 1, + anon_sym_CARET, + ACTIONS(1588), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1590), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1596), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1702), 5, + ACTIONS(1600), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1722), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1700), 27, + ACTIONS(1720), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45705] = 5, + [46084] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 1, - sym__template_string_start, - STATE(738), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1521), 4, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_AMP, + ACTIONS(1606), 1, + anon_sym_CARET, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1590), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1596), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1600), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1712), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45755] = 13, + [46152] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1630), 1, - anon_sym_CARET, - ACTIONS(1608), 2, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1616), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1600), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_EQ, + ACTIONS(1714), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 19, + ACTIONS(1712), 24, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45821] = 8, + [46212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1717), 5, + ACTIONS(1714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 27, + ACTIONS(1712), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -62330,91 +62726,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45877] = 8, + [46268] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1717), 5, + ACTIONS(1606), 1, + anon_sym_CARET, + ACTIONS(1588), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1590), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1596), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1600), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 27, + ACTIONS(1712), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45933] = 12, + [46334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1608), 2, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, + ACTIONS(1590), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1616), 2, + ACTIONS(1596), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1600), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_EQ, + ACTIONS(1714), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 20, + ACTIONS(1712), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACK, @@ -62430,33 +62831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45997] = 8, + [46398] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1726), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 27, + ACTIONS(1724), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -62478,137 +62879,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46053] = 15, + [46454] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, - anon_sym_PIPE, - ACTIONS(1662), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1668), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1652), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1660), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1664), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1721), 3, + ACTIONS(1730), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 17, + ACTIONS(1728), 27, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46123] = 15, + [46510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(664), 1, + sym__string_start, + STATE(753), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1532), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1530), 31, anon_sym_DOT, - ACTIONS(1604), 1, anon_sym_LPAREN, - ACTIONS(1614), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1618), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1620), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1628), 1, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1630), 1, anon_sym_CARET, - ACTIONS(1608), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(666), 1, + sym__template_string_start, + STATE(754), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1536), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1616), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1624), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1721), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 17, + ACTIONS(1534), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46193] = 8, + [46610] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 27, + ACTIONS(1712), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -62636,35 +63065,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46249] = 11, + [46666] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1652), 2, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1596), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1664), 3, + ACTIONS(1600), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, + ACTIONS(1714), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(1712), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -62687,156 +63116,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46311] = 15, + [46728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1658), 1, - anon_sym_PIPE, - ACTIONS(1662), 1, - anon_sym_STAR_STAR, - ACTIONS(1668), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1652), 2, + ACTIONS(1732), 1, + sym__string_start, + STATE(753), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1525), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1660), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1664), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1725), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46381] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, + ACTIONS(1523), 31, anon_sym_DOT, - ACTIONS(1604), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1662), 1, - anon_sym_STAR_STAR, - ACTIONS(1668), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1652), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1660), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1664), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1711), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46449] = 10, + [46778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1662), 1, - anon_sym_STAR_STAR, - ACTIONS(1652), 2, + ACTIONS(1735), 1, + sym__template_string_start, + STATE(754), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1512), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1664), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 24, + ACTIONS(1510), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -62846,33 +63206,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46509] = 8, + [46828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, - anon_sym_as, + ACTIONS(1714), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 27, + ACTIONS(1712), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -62894,42 +63254,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46565] = 5, + [46884] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, - sym__string_start, - STATE(752), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1514), 4, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1572), 1, + anon_sym_STAR_STAR, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1568), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1576), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1512), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1712), 22, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -62939,98 +63305,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46615] = 13, + [46946] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1566), 1, + anon_sym_PIPE, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1580), 1, + anon_sym_AMP, + ACTIONS(1582), 1, anon_sym_CARET, - ACTIONS(1652), 2, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 2, + ACTIONS(1562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1660), 2, + ACTIONS(1568), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1664), 3, + ACTIONS(1576), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_as, + ACTIONS(1740), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 19, + ACTIONS(1738), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46681] = 12, + [47016] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1652), 2, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1654), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1660), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1664), 3, + ACTIONS(1576), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_as, + ACTIONS(1714), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 20, + ACTIONS(1712), 24, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -63038,33 +63403,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46745] = 8, + [47076] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 27, + ACTIONS(1712), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -63092,38 +63458,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46801] = 11, + [47132] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1608), 2, + ACTIONS(1582), 1, + anon_sym_CARET, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 2, + ACTIONS(1562), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1568), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1576), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(1712), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, @@ -63135,107 +63505,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46863] = 15, + [47198] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1614), 1, - anon_sym_PIPE, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1628), 1, - anon_sym_AMP, - ACTIONS(1630), 1, - anon_sym_CARET, - ACTIONS(1608), 2, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, + ACTIONS(1562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1616), 2, + ACTIONS(1568), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1576), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1706), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1704), 17, + ACTIONS(1712), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46933] = 15, + [47262] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1614), 1, + ACTIONS(1566), 1, anon_sym_PIPE, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1628), 1, + ACTIONS(1580), 1, anon_sym_AMP, - ACTIONS(1630), 1, + ACTIONS(1582), 1, anon_sym_CARET, - ACTIONS(1608), 2, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, + ACTIONS(1562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1616), 2, + ACTIONS(1568), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1576), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1725), 3, + ACTIONS(1718), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 17, + ACTIONS(1716), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63253,139 +63618,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47003] = 5, + [47332] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - sym__string_start, - STATE(752), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1506), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1504), 31, + ACTIONS(1554), 1, anon_sym_DOT, + ACTIONS(1556), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(1566), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1570), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1580), 1, anon_sym_AMP, + ACTIONS(1582), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47053] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(656), 1, - sym__template_string_start, - STATE(738), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1510), 4, + ACTIONS(1560), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1562), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1568), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1576), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1722), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1508), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1720), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47103] = 14, + [47402] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1594), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, anon_sym_STAR_STAR, - ACTIONS(1628), 1, + ACTIONS(1604), 1, anon_sym_AMP, - ACTIONS(1630), 1, + ACTIONS(1606), 1, anon_sym_CARET, - ACTIONS(1608), 2, + ACTIONS(1588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 2, + ACTIONS(1590), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1616), 2, + ACTIONS(1596), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, + ACTIONS(1600), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, - anon_sym_EQ, + ACTIONS(1740), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 18, + ACTIONS(1738), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -63397,32 +63728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47171] = 10, + [47472] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1620), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1624), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1713), 3, + ACTIONS(1730), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 24, + ACTIONS(1728), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -63435,9 +63761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -63447,93 +63776,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47231] = 20, + [47528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1622), 1, - anon_sym_EQ, - ACTIONS(1730), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, - anon_sym_PIPE, - ACTIONS(1744), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(1750), 1, - anon_sym_not, - ACTIONS(1752), 1, - anon_sym_AMP, - ACTIONS(1754), 1, - anon_sym_CARET, - ACTIONS(1758), 1, - anon_sym_is, - STATE(1005), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1734), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1736), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1742), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1756), 2, - anon_sym_LT, - anon_sym_GT, - STATE(903), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1748), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1738), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1606), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_COLON2, - sym_type_conversion, - [47310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(604), 1, - anon_sym_COLON_EQ, - ACTIONS(272), 5, - anon_sym_as, + ACTIONS(1726), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1724), 27, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -63549,90 +63824,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47357] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1622), 1, - anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_DOT, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1770), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1780), 1, - anon_sym_not, - ACTIONS(1782), 1, - anon_sym_AMP, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1788), 1, - anon_sym_is, - STATE(1008), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1764), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1766), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1786), 2, - anon_sym_LT, - anon_sym_GT, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1778), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1768), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1606), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [47436] = 5, + [47584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(630), 1, - sym__string_start, - STATE(767), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1235), 5, + ACTIONS(1338), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1333), 32, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -63650,23 +63866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [47485] = 5, + [47629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(630), 1, + ACTIONS(1742), 1, sym__string_start, - STATE(770), 2, + STATE(768), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1506), 5, + ACTIONS(1525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1504), 29, + ACTIONS(1523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -63696,21 +63910,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [47534] = 5, + [47678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(632), 1, + ACTIONS(1745), 1, sym__template_string_start, - STATE(771), 2, + STATE(769), 2, sym_template_string, aux_sym_concatenated_template_string_repeat1, - ACTIONS(1510), 5, + ACTIONS(1512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1508), 29, + ACTIONS(1510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -63740,21 +63954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [47583] = 5, + [47727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - sym__template_string_start, - STATE(774), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1235), 5, + ACTIONS(83), 1, + sym__string_start, + STATE(776), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1532), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1530), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63784,22 +63998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [47632] = 5, + [47776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, - sym__string_start, - STATE(770), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1514), 5, + ACTIONS(85), 1, + sym__template_string_start, + STATE(777), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1512), 29, + ACTIONS(1534), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -63809,7 +64025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -63826,24 +64041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [47681] = 5, + anon_sym_SEMI, + [47825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(85), 1, sym__template_string_start, STATE(771), 2, sym_template_string, aux_sym_concatenated_template_string_repeat1, - ACTIONS(1521), 5, + ACTIONS(1209), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 29, + ACTIONS(1204), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -63853,7 +64069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -63870,54 +64085,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [47730] = 3, + anon_sym_SEMI, + [47874] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 5, - anon_sym_STAR, + ACTIONS(1574), 1, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 32, + ACTIONS(1748), 1, anon_sym_DOT, + ACTIONS(1750), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(1758), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1762), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1768), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1770), 1, anon_sym_AMP, + ACTIONS(1772), 1, anon_sym_CARET, + ACTIONS(1776), 1, + anon_sym_is, + STATE(1008), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1752), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1754), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(1760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1774), 2, + anon_sym_LT, + anon_sym_GT, + STATE(895), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1766), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1756), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [47775] = 4, + ACTIONS(1558), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [47953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(580), 1, + ACTIONS(590), 1, anon_sym_COLON_EQ, ACTIONS(272), 6, anon_sym_STAR, @@ -63957,110 +64188,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47822] = 5, + [48000] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - sym__template_string_start, - STATE(778), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1510), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1508), 29, - sym__newline, + ACTIONS(1554), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(1556), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1570), 1, anon_sym_LBRACK, + ACTIONS(1784), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1792), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1794), 1, anon_sym_AMP, + ACTIONS(1796), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(1800), 1, anon_sym_is, - anon_sym_SEMI, - [47871] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym__string_start, - STATE(782), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1235), 5, + STATE(1014), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1780), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + ACTIONS(1798), 2, + anon_sym_LT, + anon_sym_GT, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1790), 3, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1782), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [47920] = 5, + ACTIONS(1558), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [48077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(632), 1, - sym__template_string_start, - STATE(768), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1235), 5, + ACTIONS(1802), 1, + sym__string_start, + STATE(776), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1523), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -64070,7 +64273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -64087,34 +64289,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [47969] = 3, + anon_sym_SEMI, + [48126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 5, + ACTIONS(1805), 1, + sym__template_string_start, + STATE(777), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 32, + ACTIONS(1510), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -64131,33 +64333,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48014] = 5, + anon_sym_SEMI, + [48175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - sym__template_string_start, - STATE(778), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1521), 5, + ACTIONS(1488), 1, + anon_sym_COLON_EQ, + ACTIONS(1209), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1519), 29, - sym__newline, + ACTIONS(1204), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -64174,22 +64377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [48063] = 5, + [48222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(83), 1, sym__string_start, - STATE(779), 2, + STATE(770), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1514), 5, + ACTIONS(1209), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1512), 29, + ACTIONS(1204), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -64219,90 +64421,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [48112] = 19, + [48271] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1574), 1, + anon_sym_EQ, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, + ACTIONS(1818), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1816), 1, + ACTIONS(1828), 1, anon_sym_not, - ACTIONS(1818), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1820), 1, + ACTIONS(1832), 1, anon_sym_CARET, - ACTIONS(1824), 1, + ACTIONS(1836), 1, anon_sym_is, - STATE(1006), 1, + STATE(1004), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1802), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1810), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1822), 2, + ACTIONS(1834), 2, anon_sym_LT, anon_sym_GT, - STATE(734), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1806), 6, + ACTIONS(1816), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1606), 8, + ACTIONS(1558), 7, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [48189] = 4, + anon_sym_COLON2, + sym_type_conversion, + [48350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 1, - anon_sym_COLON_EQ, - ACTIONS(1235), 6, + ACTIONS(630), 1, + sym__string_start, + STATE(784), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1209), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 30, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -64320,24 +64522,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48236] = 5, + anon_sym_COLON2, + sym_type_conversion, + [48399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym__string_start, - STATE(779), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1506), 5, + ACTIONS(632), 1, + sym__template_string_start, + STATE(785), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1209), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1504), 29, - sym__newline, + ACTIONS(1204), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -64347,6 +64549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -64363,27 +64566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [48285] = 4, + anon_sym_COLON2, + sym_type_conversion, + [48448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON_EQ, - ACTIONS(1235), 5, - anon_sym_as, + ACTIONS(1295), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 31, + ACTIONS(1290), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -64407,37 +64610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48332] = 8, + [48493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, - anon_sym_STAR_STAR, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1717), 4, + ACTIONS(630), 1, + sym__string_start, + STATE(768), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 26, + ACTIONS(1530), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -64453,80 +64652,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48386] = 13, + anon_sym_COLON2, + sym_type_conversion, + [48542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_DOT, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1764), 2, + ACTIONS(632), 1, + sym__template_string_start, + STATE(769), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1536), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1766), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1713), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1711), 17, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [48450] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1760), 1, + ACTIONS(1534), 29, anon_sym_DOT, - ACTIONS(1762), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1717), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1715), 25, - sym__newline, - anon_sym_from, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -64534,6 +64678,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -64549,25 +64696,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [48504] = 3, + anon_sym_COLON2, + sym_type_conversion, + [48591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 4, + ACTIONS(1838), 1, + anon_sym_COLON_EQ, + ACTIONS(1209), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 32, - sym__string_start, + ACTIONS(1204), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -64591,24 +64741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48548] = 3, + [48638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 4, + ACTIONS(604), 1, + anon_sym_COLON_EQ, + ACTIONS(272), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1534), 32, - sym__template_string_start, + ACTIONS(303), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -64632,97 +64784,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48592] = 15, + [48685] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1770), 1, + ACTIONS(1758), 1, anon_sym_PIPE, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1782), 1, - anon_sym_AMP, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1764), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1766), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1721), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1719), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [48660] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_DOT, ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1770), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1782), 1, + ACTIONS(1770), 1, anon_sym_AMP, - ACTIONS(1784), 1, + ACTIONS(1772), 1, anon_sym_CARET, - ACTIONS(1764), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1766), 2, + ACTIONS(1754), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(900), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1706), 3, + ACTIONS(1722), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1704), 15, + ACTIONS(1720), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -64738,102 +64837,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [48728] = 8, + [48753] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1702), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1700), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [48782] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(1842), 1, anon_sym_LPAREN, - ACTIONS(1838), 1, + ACTIONS(1850), 1, anon_sym_PIPE, - ACTIONS(1842), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1856), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1860), 1, anon_sym_not, - ACTIONS(1850), 1, + ACTIONS(1862), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1864), 1, anon_sym_CARET, - ACTIONS(1856), 1, + ACTIONS(1868), 1, anon_sym_is, - STATE(1010), 1, + STATE(1016), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1832), 2, + ACTIONS(1844), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + ACTIONS(1846), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1840), 2, + ACTIONS(1852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1854), 2, + ACTIONS(1866), 2, anon_sym_LT, anon_sym_GT, - STATE(979), 2, + STATE(953), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1846), 3, + ACTIONS(1858), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1836), 6, + ACTIONS(1848), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1606), 7, + ACTIONS(1558), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64841,20 +64894,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [48858] = 5, + [48829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - STATE(759), 2, + STATE(749), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1235), 4, + ACTIONS(1209), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64884,20 +64937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48906] = 5, + [48877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - STATE(760), 2, + STATE(750), 2, sym_template_string, aux_sym_concatenated_template_string_repeat1, - ACTIONS(1235), 4, + ACTIONS(1209), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64927,15 +64980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48954] = 3, + [48925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 4, + ACTIONS(1548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1526), 32, + ACTIONS(1546), 32, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -64968,15 +65021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48998] = 3, + [48969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 4, + ACTIONS(1544), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1538), 32, + ACTIONS(1542), 32, sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -65009,36 +65062,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49042] = 8, + [49013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_DOT, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1552), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, - sym__newline, - anon_sym_from, + ACTIONS(1550), 32, + sym__string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -65054,37 +65103,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [49096] = 8, + [49057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_DOT, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - STATE(900), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1540), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, - sym__newline, - anon_sym_from, + ACTIONS(1538), 32, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -65100,28 +65144,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [49150] = 8, + [49101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - STATE(903), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1702), 5, + ACTIONS(1714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1700), 25, + ACTIONS(1712), 25, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -65129,7 +65174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -65145,89 +65189,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49204] = 8, + anon_sym_SEMI, + [49155] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - STATE(903), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1717), 5, + ACTIONS(1752), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1715), 25, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49258] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1730), 1, - anon_sym_DOT, - ACTIONS(1732), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_LBRACK, - ACTIONS(1746), 1, - anon_sym_STAR_STAR, - STATE(903), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, - anon_sym_STAR, + ACTIONS(1714), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, + ACTIONS(1766), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 20, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -65237,88 +65238,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49312] = 11, + anon_sym_SEMI, + [49215] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1758), 1, + anon_sym_PIPE, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1734), 2, + ACTIONS(1770), 1, + anon_sym_AMP, + ACTIONS(1772), 1, + anon_sym_CARET, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1742), 2, + ACTIONS(1754), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1740), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 20, + ACTIONS(1738), 15, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49372] = 8, + anon_sym_SEMI, + [49283] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 4, + ACTIONS(1726), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 26, + ACTIONS(1724), 25, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -65334,48 +65337,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49426] = 15, + anon_sym_SEMI, + [49337] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, + ACTIONS(1758), 1, anon_sym_PIPE, - ACTIONS(1744), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1752), 1, + ACTIONS(1770), 1, anon_sym_AMP, - ACTIONS(1754), 1, + ACTIONS(1772), 1, anon_sym_CARET, - ACTIONS(1734), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, + ACTIONS(1754), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1721), 3, + ACTIONS(1718), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1719), 15, + ACTIONS(1716), 15, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65385,52 +65390,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49494] = 15, + anon_sym_SEMI, + [49405] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1818), 1, + ACTIONS(1770), 1, anon_sym_AMP, - ACTIONS(1820), 1, + ACTIONS(1772), 1, anon_sym_CARET, - ACTIONS(1725), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, + ACTIONS(1754), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1810), 2, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1723), 16, + ACTIONS(1712), 16, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65440,97 +65442,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49562] = 14, + anon_sym_SEMI, + [49471] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1818), 1, - anon_sym_AMP, - ACTIONS(1820), 1, - anon_sym_CARET, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1810), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 17, + ACTIONS(1712), 22, + sym__newline, + anon_sym_from, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49628] = 10, + anon_sym_SEMI, + [49529] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(734), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1712), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 23, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [49583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + STATE(925), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1730), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -65540,32 +65581,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49686] = 8, + anon_sym_COLON2, + sym_type_conversion, + [49637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 4, + ACTIONS(1726), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 26, + ACTIONS(1724), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -65586,197 +65627,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49740] = 15, + anon_sym_COLON2, + sym_type_conversion, + [49691] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, - anon_sym_PIPE, - ACTIONS(1744), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1752), 1, - anon_sym_AMP, - ACTIONS(1754), 1, + ACTIONS(1772), 1, anon_sym_CARET, - ACTIONS(1734), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, + ACTIONS(1754), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1725), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1723), 15, + ACTIONS(1712), 17, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [49808] = 13, + anon_sym_SEMI, + [49755] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1820), 1, - anon_sym_CARET, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1752), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, + ACTIONS(1754), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1810), 2, + ACTIONS(1760), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(895), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1766), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 18, + ACTIONS(1712), 18, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49872] = 12, + anon_sym_SEMI, + [49817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1804), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1810), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1711), 19, + ACTIONS(1726), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1724), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [49934] = 14, + [49871] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1752), 1, - anon_sym_AMP, - ACTIONS(1754), 1, - anon_sym_CARET, - ACTIONS(1734), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 16, + ACTIONS(1712), 20, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, @@ -65784,6 +65814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -65792,48 +65825,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [50000] = 15, + [49931] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, + ACTIONS(1818), 1, anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1822), 1, + anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1818), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1820), 1, + ACTIONS(1832), 1, anon_sym_CARET, - ACTIONS(1721), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1810), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1740), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1719), 16, + ACTIONS(1738), 15, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -65845,49 +65876,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [50068] = 15, + anon_sym_COLON2, + sym_type_conversion, + [49999] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1812), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1818), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1820), 1, + ACTIONS(1832), 1, anon_sym_CARET, - ACTIONS(1706), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1810), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1714), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1704), 16, + ACTIONS(1712), 16, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, @@ -65898,32 +65928,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [50136] = 10, + anon_sym_COLON2, + sym_type_conversion, + [50065] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1734), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(903), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 22, + ACTIONS(1712), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -65946,27 +65978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [50194] = 8, + [50123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - STATE(903), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 5, + ACTIONS(1714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, + ACTIONS(1712), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -65992,151 +66024,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [50248] = 11, + [50177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1764), 2, + ACTIONS(1832), 1, + anon_sym_CARET, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1772), 2, + ACTIONS(1814), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(900), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 20, - sym__newline, - anon_sym_from, + ACTIONS(1712), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [50308] = 15, + anon_sym_COLON2, + sym_type_conversion, + [50241] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1770), 1, - anon_sym_PIPE, - ACTIONS(1774), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1782), 1, - anon_sym_AMP, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1764), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1766), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(900), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1725), 3, + ACTIONS(1714), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1723), 15, - sym__newline, - anon_sym_from, + ACTIONS(1712), 18, anon_sym_COMMA, anon_sym_if, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [50376] = 13, + anon_sym_COLON2, + sym_type_conversion, + [50303] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1818), 1, + anon_sym_PIPE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1754), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1832), 1, anon_sym_CARET, - ACTIONS(1734), 2, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1718), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 17, + ACTIONS(1716), 15, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66145,48 +66178,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [50440] = 12, + [50371] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1818), 1, + anon_sym_PIPE, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - ACTIONS(1734), 2, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1832), 1, + anon_sym_CARET, + ACTIONS(1812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, + ACTIONS(1814), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, + ACTIONS(1722), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1826), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 18, + ACTIONS(1720), 15, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66195,96 +66231,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [50502] = 12, + [50439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1748), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1762), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1764), 1, anon_sym_STAR_STAR, - ACTIONS(1764), 2, + STATE(895), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1730), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1766), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(900), 2, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [50493] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, - anon_sym_EQ, + ACTIONS(1714), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1712), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 18, - sym__newline, - anon_sym_from, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [50547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1786), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1790), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 21, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [50564] = 15, + [50607] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1732), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, - anon_sym_PIPE, - ACTIONS(1744), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1746), 1, + ACTIONS(1784), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1752), 1, + ACTIONS(1794), 1, anon_sym_AMP, - ACTIONS(1754), 1, + ACTIONS(1796), 1, anon_sym_CARET, - ACTIONS(1734), 2, + ACTIONS(1740), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1736), 2, + ACTIONS(1780), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1742), 2, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(903), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1706), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1748), 3, + ACTIONS(1790), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1704), 15, + ACTIONS(1738), 16, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -66296,50 +66425,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [50632] = 14, + [50675] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1782), 1, + ACTIONS(1794), 1, anon_sym_AMP, - ACTIONS(1784), 1, + ACTIONS(1796), 1, anon_sym_CARET, - ACTIONS(1764), 2, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1766), 2, + ACTIONS(1780), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(900), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1790), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 16, - sym__newline, - anon_sym_from, + ACTIONS(1712), 17, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -66349,42 +66477,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [50698] = 10, + [50741] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1762), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1774), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1764), 2, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(900), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1713), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1790), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 22, - sym__newline, - anon_sym_from, + ACTIONS(1712), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -66397,27 +66525,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [50756] = 8, + [50799] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1702), 4, + ACTIONS(1714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1700), 26, + ACTIONS(1712), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -66444,36 +66571,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [50810] = 11, + [50853] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1713), 2, + ACTIONS(1796), 1, + anon_sym_CARET, + ACTIONS(1714), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1802), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1810), 2, + ACTIONS(1780), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(734), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1814), 3, + ACTIONS(1790), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 21, + ACTIONS(1712), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -66485,338 +66616,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [50870] = 22, + [50917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1862), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1467), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1504), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1585), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [50951] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON_EQ, - ACTIONS(1878), 1, - anon_sym_EQ, - ACTIONS(1235), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + ACTIONS(1714), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1780), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1790), 3, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [50998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_COLON_EQ, - ACTIONS(1235), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1712), 19, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51043] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1503), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1504), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1585), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [51124] = 8, + [50979] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1784), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1713), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1794), 1, + anon_sym_AMP, + ACTIONS(1796), 1, + anon_sym_CARET, + ACTIONS(1718), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1780), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1790), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51177] = 11, + [51047] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1784), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - ACTIONS(1713), 2, + ACTIONS(1794), 1, + anon_sym_AMP, + ACTIONS(1796), 1, + anon_sym_CARET, + ACTIONS(1722), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1832), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1840), 2, + ACTIONS(1780), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1786), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(979), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1846), 3, + ACTIONS(1790), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 20, - anon_sym_RPAREN, + ACTIONS(1720), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51236] = 8, + [51115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1554), 1, anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(1556), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, + ACTIONS(1570), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - STATE(979), 2, + STATE(708), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1702), 4, + ACTIONS(1730), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1700), 25, - anon_sym_RPAREN, + ACTIONS(1728), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -66832,77 +66824,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51289] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1468), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1470), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [51334] = 8, + [51169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1808), 1, anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(1810), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, + ACTIONS(1822), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1824), 1, anon_sym_STAR_STAR, - STATE(979), 2, + STATE(925), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1717), 4, + ACTIONS(1714), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 25, - anon_sym_RPAREN, + ACTIONS(1712), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -66918,18 +66868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51387] = 3, + anon_sym_COLON2, + sym_type_conversion, + [51223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 5, + ACTIONS(1268), 1, + anon_sym_COLON_EQ, + ACTIONS(1209), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 30, + ACTIONS(1204), 29, sym__newline, - sym__string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -66958,17 +66911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [51430] = 3, + [51268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 5, + ACTIONS(1870), 1, + anon_sym_COLON_EQ, + ACTIONS(1209), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1534), 30, - sym__template_string_start, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -66998,188 +66952,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [51473] = 15, + [51313] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1838), 1, - anon_sym_PIPE, ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1856), 1, anon_sym_STAR_STAR, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_CARET, - ACTIONS(1725), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1730), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1834), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1723), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [51540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(272), 13, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(307), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [51585] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1842), 1, - anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_CARET, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1834), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1711), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51650] = 10, + [51366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1842), 1, - anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, + ACTIONS(1544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1711), 22, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1542), 30, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -67189,27 +67035,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51707] = 5, + anon_sym_COLON2, + sym_type_conversion, + [51409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(604), 1, + ACTIONS(283), 1, anon_sym_COLON_EQ, - ACTIONS(277), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(272), 4, + ACTIONS(272), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 27, + ACTIONS(303), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -67231,17 +67077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51754] = 3, + anon_sym_SEMI, + [51454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 5, + ACTIONS(618), 1, + anon_sym_COLON_EQ, + ACTIONS(272), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1526), 30, - sym__string_start, + ACTIONS(303), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -67271,30 +67119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [51797] = 4, + [51499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(1872), 1, anon_sym_COLON_EQ, - ACTIONS(272), 5, + ACTIONS(1209), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, - sym__newline, + ACTIONS(1204), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -67311,157 +67160,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [51842] = 13, + [51544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1290), 3, anon_sym_DOT, - ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1842), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1852), 1, - anon_sym_CARET, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, + ACTIONS(1295), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1834), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1711), 17, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1297), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51589] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1726), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1724), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51905] = 12, + [51642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1842), 1, - anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, + ACTIONS(1540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1834), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1711), 18, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51966] = 22, + anon_sym_COLON2, + sym_type_conversion, + [51685] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1878), 1, anon_sym_STAR, - ACTIONS(1864), 1, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(1882), 1, + anon_sym_COLON, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - ACTIONS(1882), 1, - anon_sym_if, - ACTIONS(1884), 1, - anon_sym_COLON, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1293), 4, + STATE(1307), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -67470,14 +67345,14 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [52047] = 4, + [51766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(1204), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1235), 13, + ACTIONS(1209), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -67491,7 +67366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1241), 19, + ACTIONS(1272), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67511,27 +67386,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52092] = 5, + [51811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON_EQ, - ACTIONS(1232), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1235), 4, + ACTIONS(1548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 27, + ACTIONS(1546), 30, + sym__newline, + sym__string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -67553,25 +67425,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52139] = 4, + anon_sym_SEMI, + [51854] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, - anon_sym_COLON_EQ, - ACTIONS(272), 5, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1714), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1712), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [51907] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [51966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1546), 30, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -67594,19 +67557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52184] = 4, + anon_sym_COLON2, + sym_type_conversion, + [52009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 1, - anon_sym_COLON_EQ, - ACTIONS(1235), 5, + ACTIONS(1544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1542), 30, sym__newline, + sym__template_string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -67635,20 +67599,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [52229] = 3, + [52052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 5, + ACTIONS(1552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1526), 30, - sym__newline, + ACTIONS(1550), 30, sym__string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -67658,6 +67620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -67674,29 +67637,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [52272] = 3, + anon_sym_COLON2, + sym_type_conversion, + [52095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 5, + ACTIONS(1838), 1, + anon_sym_COLON_EQ, + ACTIONS(1206), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1209), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 30, - sym__string_start, + ACTIONS(1204), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [52142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(604), 1, + anon_sym_COLON_EQ, + ACTIONS(277), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(272), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -67713,16 +67723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [52315] = 4, + [52189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 3, + ACTIONS(1333), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(272), 13, + ACTIONS(1338), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -67736,7 +67744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(588), 19, + ACTIONS(1340), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67756,133 +67764,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52360] = 15, + [52234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1838), 1, - anon_sym_PIPE, - ACTIONS(1842), 1, - anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_CARET, - ACTIONS(1721), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, + ACTIONS(1552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1834), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1550), 30, + sym__newline, + sym__string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1719), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52427] = 15, + anon_sym_SEMI, + [52277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(1540), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + sym__newline, + sym__template_string_start, anon_sym_DOT, - ACTIONS(1830), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1838), 1, - anon_sym_PIPE, - ACTIONS(1842), 1, - anon_sym_LBRACK, - ACTIONS(1844), 1, - anon_sym_STAR_STAR, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_CARET, - ACTIONS(1706), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1834), 2, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1840), 2, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1846), 3, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1704), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52494] = 3, + anon_sym_SEMI, + [52320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 5, + ACTIONS(638), 1, + anon_sym_COLON_EQ, + ACTIONS(272), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1538), 30, - sym__newline, - sym__template_string_start, + ACTIONS(303), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -67899,74 +67885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [52537] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1886), 1, - anon_sym_if, - ACTIONS(1888), 1, - anon_sym_COLON, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [52618] = 4, + [52365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(303), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1235), 13, + ACTIONS(272), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -67980,7 +67906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1262), 19, + ACTIONS(307), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -68000,88 +67926,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52663] = 3, + [52410] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1534), 30, - sym__newline, - sym__template_string_start, + ACTIONS(1840), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(1842), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(1850), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1854), 1, anon_sym_LBRACK, + ACTIONS(1856), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1862), 1, anon_sym_AMP, + ACTIONS(1864), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_SEMI, - [52706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1425), 13, + ACTIONS(1740), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1852), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1427), 19, + ACTIONS(1738), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [52751] = 5, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [52477] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(604), 1, @@ -68123,29 +68020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52798] = 4, + [52524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, + ACTIONS(1838), 1, anon_sym_COLON_EQ, - ACTIONS(1235), 5, - anon_sym_STAR, + ACTIONS(1898), 1, anon_sym_EQ, + ACTIONS(1209), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68162,30 +68062,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [52843] = 3, + [52571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 5, + ACTIONS(604), 1, + anon_sym_COLON_EQ, + ACTIONS(587), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(272), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1538), 30, - sym__template_string_start, + ACTIONS(303), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68202,123 +68104,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [52886] = 4, + [52618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - anon_sym_COLON_EQ, - ACTIONS(272), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1204), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1209), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [52931] = 8, + ACTIONS(1211), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [52663] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1830), 1, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1900), 1, + anon_sym_if, + ACTIONS(1902), 1, + anon_sym_COLON, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [52744] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1840), 1, + anon_sym_DOT, ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1856), 1, anon_sym_STAR_STAR, - STATE(979), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1713), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1862), 1, + anon_sym_AMP, + ACTIONS(1864), 1, + anon_sym_CARET, + ACTIONS(1714), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1711), 25, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1852), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52984] = 3, + [52809] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1598), 29, - sym__newline, + ACTIONS(1840), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(1842), 1, anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 22, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -68328,30 +68302,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53026] = 3, + [52866] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 5, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1842), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1714), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1712), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -68367,253 +68347,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53068] = 3, + [52919] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1542), 29, + ACTIONS(1840), 1, anon_sym_DOT, + ACTIONS(1842), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + ACTIONS(1864), 1, + anon_sym_CARET, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1852), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [53110] = 3, + [52982] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1586), 29, + ACTIONS(1840), 1, anon_sym_DOT, + ACTIONS(1842), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + ACTIONS(1714), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1852), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1712), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [53152] = 4, + [53043] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, - anon_sym_COLON_EQ, - ACTIONS(1235), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 28, + ACTIONS(1840), 1, anon_sym_DOT, + ACTIONS(1842), 1, anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_PIPE, + ACTIONS(1854), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR_STAR, + ACTIONS(1862), 1, + anon_sym_AMP, + ACTIONS(1864), 1, + anon_sym_CARET, + ACTIONS(1718), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1852), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53196] = 4, + [53110] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1235), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 27, + ACTIONS(1840), 1, anon_sym_DOT, + ACTIONS(1842), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(1850), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1854), 1, anon_sym_LBRACK, + ACTIONS(1856), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1862), 1, anon_sym_AMP, + ACTIONS(1864), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [53240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(1722), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1844), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1846), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1852), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + STATE(953), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1858), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1720), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [53282] = 21, + [53177] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1878), 1, anon_sym_STAR, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, - sym_float, ACTIONS(1894), 1, - anon_sym_RPAREN, - STATE(1035), 1, + sym_float, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, + STATE(1407), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1408), 2, sym__match_pattern, sym_match_as_pattern, + STATE(1595), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1139), 8, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -68622,55 +68609,57 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [53360] = 21, + [53258] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1878), 1, anon_sym_STAR, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, - sym_float, ACTIONS(1894), 1, - anon_sym_RBRACK, - STATE(1035), 1, + sym_float, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, + STATE(1408), 2, sym__match_pattern, sym_match_as_pattern, + STATE(1495), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1595), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1139), 8, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -68679,27 +68668,73 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [53438] = 3, + [53339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 5, + ACTIONS(303), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(272), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(598), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [53384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_COLON_EQ, + ACTIONS(1265), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1209), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1570), 29, + ACTIONS(1204), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68716,27 +68751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [53480] = 4, + [53431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1425), 4, + ACTIONS(1706), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 27, + ACTIONS(1704), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -68758,16 +68789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53524] = 3, + anon_sym_SEMI, + [53473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 5, + ACTIONS(1674), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1672), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -68797,23 +68829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [53566] = 4, + [53515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(642), 1, - anon_sym_COLON_EQ, - ACTIONS(272), 5, + ACTIONS(1678), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 28, + ACTIONS(1676), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -68821,6 +68849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68837,16 +68866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53610] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 5, + ACTIONS(1032), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, + ACTIONS(1030), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -68876,16 +68907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [53652] = 3, + [53599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 5, + ACTIONS(1674), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1672), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -68915,19 +68946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [53694] = 3, + [53641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 29, - sym__newline, + ACTIONS(1612), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -68937,6 +68966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68953,31 +68983,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53736] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 3, - anon_sym_RPAREN, + ACTIONS(1682), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1680), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1468), 4, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [53725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1686), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 27, + ACTIONS(1684), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -68994,19 +69061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53780] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 5, + ACTIONS(1690), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, - sym__newline, + ACTIONS(1688), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69016,6 +69083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69032,20 +69100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53822] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 5, + ACTIONS(1690), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1636), 29, - sym__newline, + ACTIONS(1688), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69055,6 +69122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69071,17 +69139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53864] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(272), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1692), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -69111,19 +69180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [53906] = 3, + [53893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 5, + ACTIONS(1698), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, - sym__newline, + ACTIONS(1696), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69133,6 +69200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69149,20 +69217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53948] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 5, + ACTIONS(1690), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1570), 29, - sym__newline, + ACTIONS(1688), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69172,6 +69239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69188,78 +69256,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [53990] = 22, + anon_sym_COLON2, + sym_type_conversion, + [53977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1702), 5, anon_sym_STAR, - ACTIONS(1864), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1700), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1896), 1, - anon_sym_RPAREN, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1540), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1541), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [54070] = 3, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [54019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 5, + ACTIONS(1702), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1550), 29, - sym__newline, + ACTIONS(1700), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69269,6 +69317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69285,17 +69334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54112] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 5, + ACTIONS(1706), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 29, + ACTIONS(1704), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -69325,19 +69375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [54154] = 3, + [54103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 5, + ACTIONS(1702), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, - sym__newline, + ACTIONS(1700), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69347,6 +69395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69363,20 +69412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54196] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 5, + ACTIONS(1622), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1684), 29, - sym__newline, + ACTIONS(1620), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69386,6 +69434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69402,17 +69451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54238] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1626), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 29, + ACTIONS(1624), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -69442,28 +69492,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [54280] = 3, + [54229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 5, + ACTIONS(1338), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 29, - sym__newline, + ACTIONS(1333), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69480,29 +69531,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54322] = 3, + [54271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 5, + ACTIONS(1295), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 29, - sym__newline, + ACTIONS(1290), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69519,20 +69570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54364] = 3, + [54313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 5, + ACTIONS(1630), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1558), 29, - sym__newline, + ACTIONS(1628), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69542,6 +69590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69558,17 +69607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54406] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1646), 5, + ACTIONS(1618), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(1616), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -69598,55 +69648,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [54448] = 21, + [54397] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1878), 1, anon_sym_STAR, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1904), 1, + anon_sym_RPAREN, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1601), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1602), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [54477] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, sym_float, - ACTIONS(1896), 1, + ACTIONS(1904), 1, anon_sym_RBRACK, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1472), 4, + STATE(1489), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -69655,16 +69763,16 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [54526] = 3, + [54555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 5, + ACTIONS(1682), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1696), 29, + ACTIONS(1680), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -69694,19 +69802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [54568] = 3, + [54597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 5, + ACTIONS(1634), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1582), 29, - sym__newline, + ACTIONS(1632), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69716,6 +69822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69732,17 +69839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [54610] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 5, + ACTIONS(1650), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1574), 29, + ACTIONS(1648), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -69772,16 +69880,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [54652] = 3, + [54681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 5, + ACTIONS(1638), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1696), 29, + ACTIONS(1636), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [54723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1642), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -69811,16 +69958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [54694] = 3, + [54765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 5, + ACTIONS(1686), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 29, + ACTIONS(1684), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -69850,16 +69997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [54736] = 3, + [54807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 5, + ACTIONS(1690), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1688), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -69889,46 +70036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [54778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1556), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1554), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [54820] = 3, + [54849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1690), 5, @@ -69938,7 +70046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(1688), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -69948,7 +70058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -69965,18 +70074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [54862] = 3, + anon_sym_SEMI, + [54891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 5, + ACTIONS(1050), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1598), 29, + ACTIONS(1048), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -70006,29 +70114,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [54904] = 3, + [54933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 4, + ACTIONS(1906), 1, + anon_sym_COLON_EQ, + ACTIONS(1209), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 30, + ACTIONS(1204), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70045,29 +70154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54946] = 3, + [54977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1694), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 30, + ACTIONS(1692), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70084,17 +70192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54988] = 3, + anon_sym_SEMI, + [55019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 5, + ACTIONS(1698), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1636), 29, + ACTIONS(1696), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70104,7 +70215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70121,19 +70231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55030] = 3, + anon_sym_SEMI, + [55061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 5, + ACTIONS(1690), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1688), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70143,7 +70254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70160,19 +70270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55072] = 3, + anon_sym_SEMI, + [55103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1646), 5, + ACTIONS(272), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(303), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70182,7 +70293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70199,18 +70309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55114] = 3, + anon_sym_SEMI, + [55145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(1646), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -70240,21 +70349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [55156] = 3, + [55187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 5, + ACTIONS(652), 1, + anon_sym_COLON_EQ, + ACTIONS(272), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, - sym__newline, + ACTIONS(303), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -70278,28 +70389,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [55198] = 3, + [55231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 5, + ACTIONS(1292), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1295), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1062), 29, + ACTIONS(1290), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70316,19 +70429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55240] = 3, + [55275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 5, + ACTIONS(1338), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1333), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70338,7 +70451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70355,18 +70467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55282] = 3, + anon_sym_SEMI, + [55317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(1295), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1290), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -70396,23 +70507,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [55324] = 3, + [55359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 5, + ACTIONS(1265), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1209), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1594), 29, - sym__newline, + ACTIONS(1204), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -70434,20 +70547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [55366] = 3, + [55403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 5, + ACTIONS(272), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, - sym__newline, + ACTIONS(303), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70457,6 +70567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70473,17 +70584,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [55408] = 3, + anon_sym_COLON2, + sym_type_conversion, + [55445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 5, + ACTIONS(1646), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1680), 29, + ACTIONS(1644), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -70513,16 +70625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [55450] = 3, + [55487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1662), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 29, + ACTIONS(1660), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -70552,130 +70664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [55492] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1898), 1, - anon_sym_RPAREN, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [55570] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, - anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1898), 1, - anon_sym_RBRACK, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [55648] = 3, + [55529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 5, + ACTIONS(1622), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, + ACTIONS(1620), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -70705,16 +70703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [55690] = 3, + [55571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(1626), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 29, + ACTIONS(1624), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -70744,17 +70742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [55732] = 3, + [55613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 5, + ACTIONS(1614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1582), 29, + ACTIONS(1612), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70764,7 +70764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70781,25 +70780,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55774] = 3, + anon_sym_SEMI, + [55655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 5, + ACTIONS(1335), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1338), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1590), 29, - sym__newline, + ACTIONS(1333), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -70821,17 +70821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [55816] = 3, + [55699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 5, + ACTIONS(1618), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1590), 29, + ACTIONS(1616), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -70861,17 +70860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [55858] = 3, + [55741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 5, + ACTIONS(1710), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1684), 29, + ACTIONS(1708), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70881,7 +70882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70898,19 +70898,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55900] = 3, + anon_sym_SEMI, + [55783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 5, + ACTIONS(1638), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 29, + ACTIONS(1636), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70920,7 +70921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70937,19 +70937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55942] = 3, + anon_sym_SEMI, + [55825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 5, + ACTIONS(1666), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, + ACTIONS(1664), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70959,7 +70960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -70976,9 +70976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [55984] = 3, + anon_sym_SEMI, + [55867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1678), 5, @@ -70988,7 +70987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(1676), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -70998,7 +70999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71015,19 +71015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56026] = 3, + anon_sym_SEMI, + [55909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 5, + ACTIONS(1670), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1680), 29, + ACTIONS(1668), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71037,7 +71038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71054,19 +71054,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56068] = 3, + anon_sym_SEMI, + [55951] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1908), 1, + anon_sym_RBRACK, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [56029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 5, + ACTIONS(1630), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, + ACTIONS(1628), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71076,7 +71134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71093,21 +71150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56110] = 3, + anon_sym_SEMI, + [56071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 5, + ACTIONS(1650), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1676), 29, - sym__newline, + ACTIONS(1648), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71117,6 +71171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71133,17 +71188,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [56152] = 3, + anon_sym_COLON2, + sym_type_conversion, + [56113] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 5, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [56191] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1910), 1, + anon_sym_RBRACK, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [56269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 29, + ACTIONS(1640), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -71173,16 +71343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [56194] = 3, + [56311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 5, + ACTIONS(1654), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1550), 29, + ACTIONS(1652), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -71212,19 +71382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [56236] = 3, + [56353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1658), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 29, - sym__newline, + ACTIONS(1656), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71234,6 +71402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71250,17 +71419,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_SEMI, - [56278] = 3, + anon_sym_COLON2, + sym_type_conversion, + [56395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 5, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1910), 1, + anon_sym_RPAREN, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [56473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1662), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1558), 29, + ACTIONS(1660), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -71290,16 +71517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [56320] = 3, + [56515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(272), 5, + ACTIONS(1702), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1700), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -71329,17 +71556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_SEMI, - [56362] = 3, + [56557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 5, + ACTIONS(1702), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1574), 29, + ACTIONS(1700), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71349,7 +71578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71366,19 +71594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56404] = 3, + anon_sym_SEMI, + [56599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 5, + ACTIONS(1658), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 29, + ACTIONS(1656), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71388,7 +71617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71405,18 +71633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56446] = 3, + anon_sym_SEMI, + [56641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 5, + ACTIONS(1710), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 29, + ACTIONS(1708), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -71446,17 +71673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_COLON2, sym_type_conversion, - [56488] = 3, + [56683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 5, + ACTIONS(1702), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1594), 29, + ACTIONS(1700), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -71466,7 +71695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71483,30 +71711,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_COLON2, - sym_type_conversion, - [56530] = 3, + anon_sym_SEMI, + [56725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 4, + ACTIONS(1666), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71523,23 +71749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56571] = 3, + anon_sym_COLON2, + sym_type_conversion, + [56767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 4, + ACTIONS(1654), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1680), 29, + ACTIONS(1652), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -71561,28 +71789,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56612] = 3, + anon_sym_SEMI, + [56809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 4, + ACTIONS(1670), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, + ACTIONS(1668), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71599,28 +71827,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56653] = 3, + anon_sym_COLON2, + sym_type_conversion, + [56851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(272), 4, + ACTIONS(1209), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -71637,23 +71866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56694] = 3, + anon_sym_COLON2, + sym_type_conversion, + [56893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 4, + ACTIONS(1209), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 29, + ACTIONS(1204), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -71675,23 +71906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56735] = 3, + anon_sym_SEMI, + [56935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 4, + ACTIONS(1634), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1550), 29, + ACTIONS(1632), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -71713,15 +71945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56776] = 3, + anon_sym_SEMI, + [56977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 4, + ACTIONS(1670), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1558), 29, + ACTIONS(1668), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71751,15 +71984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56817] = 3, + [57018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 4, + ACTIONS(1618), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1574), 29, + ACTIONS(1616), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71789,25 +72022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56858] = 5, + [57059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(580), 1, - anon_sym_COLON_EQ, - ACTIONS(634), 1, - anon_sym_EQ, - ACTIONS(272), 4, + ACTIONS(1622), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 27, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -71829,15 +72060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56903] = 3, + [57100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 4, + ACTIONS(1626), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 29, + ACTIONS(1624), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71867,15 +72098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56944] = 3, + [57141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1646), 4, + ACTIONS(1630), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(1628), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71905,15 +72136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56985] = 3, + [57182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 4, + ACTIONS(1634), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1594), 29, + ACTIONS(1632), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71943,15 +72174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57026] = 3, + [57223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 4, + ACTIONS(1638), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 29, + ACTIONS(1636), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71981,15 +72212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57067] = 3, + [57264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 4, + ACTIONS(1050), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1554), 29, + ACTIONS(1048), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72019,15 +72250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57108] = 3, + [57305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 4, + ACTIONS(1646), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1582), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72057,15 +72288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57149] = 3, + [57346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 4, + ACTIONS(1650), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 29, + ACTIONS(1648), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72095,15 +72326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57190] = 3, + [57387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 4, + ACTIONS(1654), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(1652), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72133,15 +72364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57231] = 3, + [57428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 4, + ACTIONS(1658), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 29, + ACTIONS(1656), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72171,15 +72402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57272] = 3, + [57469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 4, + ACTIONS(1662), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1586), 29, + ACTIONS(1660), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72209,15 +72440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57313] = 3, + [57510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 4, + ACTIONS(1710), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, + ACTIONS(1708), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72247,15 +72478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57354] = 3, + [57551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1572), 4, + ACTIONS(1666), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1570), 29, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72285,15 +72516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57395] = 3, + [57592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 4, + ACTIONS(1674), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1648), 29, + ACTIONS(1672), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72323,15 +72554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57436] = 3, + [57633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 4, + ACTIONS(1678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1566), 29, + ACTIONS(1676), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72361,72 +72592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57477] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1900), 1, - sym_identifier, - ACTIONS(1902), 1, - anon_sym_RPAREN, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1444), 1, - sym_match_positional_pattern, - STATE(1449), 1, - sym_match_keyword_pattern, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1532), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [57556] = 3, + [57674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 4, + ACTIONS(1032), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 29, + ACTIONS(1030), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72456,25 +72630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57597] = 5, + [57715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 1, - anon_sym_COLON_EQ, - ACTIONS(1878), 1, - anon_sym_EQ, - ACTIONS(1235), 4, + ACTIONS(1682), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 27, + ACTIONS(1680), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -72496,127 +72668,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57642] = 20, + [57756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1858), 1, - sym_identifier, - ACTIONS(1860), 1, - anon_sym_LPAREN, - ACTIONS(1862), 1, + ACTIONS(1686), 4, anon_sym_STAR, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1293), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [57717] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - sym__string_start, - ACTIONS(656), 1, - sym__template_string_start, - ACTIONS(1860), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1684), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1864), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1866), 1, - sym_match_wildcard_pattern, - ACTIONS(1868), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1900), 1, - sym_identifier, - ACTIONS(1904), 1, - anon_sym_RPAREN, - STATE(1035), 1, - sym_template_string, - STATE(1061), 1, - sym_string, - STATE(1421), 1, - sym_match_keyword_pattern, - STATE(1544), 1, - sym_match_positional_pattern, - STATE(1714), 1, - sym_pattern_class_name, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1215), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1532), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - STATE(1139), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [57796] = 3, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [57797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 4, + ACTIONS(1690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1598), 29, + ACTIONS(1688), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72646,15 +72744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57837] = 3, + [57838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 4, + ACTIONS(1690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1062), 29, + ACTIONS(1688), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72684,15 +72782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57878] = 3, + [57879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 4, + ACTIONS(1694), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1636), 29, + ACTIONS(1692), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72722,15 +72820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57919] = 3, + [57920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 4, + ACTIONS(1698), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1590), 29, + ACTIONS(1696), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72760,15 +72858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57960] = 3, + [57961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 4, + ACTIONS(1690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1688), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72798,15 +72896,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58001] = 3, + [58002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 4, + ACTIONS(1702), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1696), 29, + ACTIONS(1700), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [58043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1702), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1700), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [58084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1704), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [58125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1702), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1700), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72836,55 +73048,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58042] = 22, + [58166] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1860), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1878), 1, + anon_sym_STAR, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - ACTIONS(1900), 1, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1307), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [58241] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1906), 1, + ACTIONS(1914), 1, anon_sym_RPAREN, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1468), 1, + STATE(1424), 1, sym_match_keyword_pattern, - STATE(1544), 1, + STATE(1558), 1, sym_match_positional_pattern, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1532), 2, + STATE(1611), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -72893,15 +73160,112 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58121] = 3, + [58320] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 4, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(1916), 1, + anon_sym_RPAREN, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1421), 1, + sym_match_keyword_pattern, + STATE(1558), 1, + sym_match_positional_pattern, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1611), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [58399] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1488), 1, + anon_sym_COLON_EQ, + ACTIONS(1898), 1, + anon_sym_EQ, + ACTIONS(1209), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1684), 29, + ACTIONS(1204), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [58444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1204), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72931,15 +73295,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58162] = 3, + [58485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 4, + ACTIONS(590), 1, + anon_sym_COLON_EQ, + ACTIONS(634), 1, + anon_sym_EQ, + ACTIONS(272), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [58530] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(664), 1, + sym__string_start, + ACTIONS(666), 1, + sym__template_string_start, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1886), 1, + sym_match_wildcard_pattern, + ACTIONS(1888), 1, + anon_sym_LBRACK, + ACTIONS(1890), 1, + anon_sym_LBRACE, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_RPAREN, + STATE(1043), 1, + sym_template_string, + STATE(1068), 1, + sym_string, + STATE(1488), 1, + sym_match_positional_pattern, + STATE(1493), 1, + sym_match_keyword_pattern, + STATE(1650), 1, + sym_pattern_class_name, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1240), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1611), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + STATE(1117), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [58609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1546), 29, + ACTIONS(303), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72969,15 +73430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58203] = 3, + [58650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1578), 29, + ACTIONS(1612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -73007,15 +73468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58244] = 3, + [58691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 4, + ACTIONS(1642), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1676), 29, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -73045,51 +73506,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58285] = 20, + [58732] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1544), 1, + STATE(1558), 1, sym_match_positional_pattern, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1532), 2, + STATE(1611), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -73098,49 +73559,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58358] = 19, + [58805] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1536), 2, + STATE(1534), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -73149,49 +73610,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58428] = 19, + [58875] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym_match_wildcard_pattern, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1215), 2, + STATE(1240), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1580), 2, + STATE(1549), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1139), 8, + STATE(1117), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -73200,43 +73661,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58498] = 17, + [58945] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - ACTIONS(1908), 1, + ACTIONS(1920), 1, sym_match_wildcard_pattern, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1098), 8, + STATE(1136), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -73245,43 +73706,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58560] = 17, + [59007] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - ACTIONS(656), 1, + ACTIONS(666), 1, sym__template_string_start, - ACTIONS(1858), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1860), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1868), 1, + ACTIONS(1888), 1, anon_sym_LBRACK, - ACTIONS(1870), 1, + ACTIONS(1890), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - ACTIONS(1910), 1, + ACTIONS(1922), 1, sym_match_wildcard_pattern, - STATE(1035), 1, + STATE(1043), 1, sym_template_string, - STATE(1061), 1, + STATE(1068), 1, sym_string, - STATE(1714), 1, + STATE(1650), 1, sym_pattern_class_name, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - STATE(1132), 8, + STATE(1101), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -73290,28 +73751,28 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [58622] = 8, + [59069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, + ACTIONS(1926), 1, + anon_sym_as, + ACTIONS(1931), 1, anon_sym_not, - ACTIONS(1674), 1, + ACTIONS(1937), 1, anon_sym_is, - ACTIONS(1914), 1, - anon_sym_as, - STATE(991), 1, + STATE(996), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1672), 2, + ACTIONS(1934), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 6, + ACTIONS(1928), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1912), 9, + ACTIONS(1924), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -73321,90 +73782,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [58661] = 8, + [59108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - anon_sym_as, - ACTIONS(1923), 1, + ACTIONS(1578), 1, anon_sym_not, - ACTIONS(1929), 1, + ACTIONS(1586), 1, anon_sym_is, - STATE(991), 1, + ACTIONS(1942), 1, + anon_sym_EQ, + STATE(999), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1926), 2, + ACTIONS(1584), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1920), 6, + ACTIONS(1564), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1916), 9, + ACTIONS(1940), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [58700] = 8, + [59147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - anon_sym_EQ, - ACTIONS(1935), 1, + ACTIONS(1602), 1, anon_sym_not, - ACTIONS(1941), 1, + ACTIONS(1610), 1, anon_sym_is, - STATE(992), 1, + ACTIONS(1942), 1, + anon_sym_as, + STATE(996), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1938), 2, + ACTIONS(1608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1932), 6, + ACTIONS(1592), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1916), 9, + ACTIONS(1940), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [58739] = 8, + [59186] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1626), 1, + ACTIONS(1926), 1, + anon_sym_EQ, + ACTIONS(1947), 1, anon_sym_not, - ACTIONS(1634), 1, + ACTIONS(1953), 1, anon_sym_is, - ACTIONS(1914), 1, - anon_sym_EQ, - STATE(992), 1, + STATE(999), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1632), 2, + ACTIONS(1950), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 6, + ACTIONS(1944), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1912), 9, + ACTIONS(1924), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -73414,14 +73875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [58778] = 4, + [59225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1958), 1, anon_sym_COMMA, - STATE(994), 1, + STATE(1000), 1, aux_sym__patterns_repeat1, - ACTIONS(1944), 18, + ACTIONS(1956), 18, anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, @@ -73440,100 +73901,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [58808] = 16, + [59255] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1949), 1, - sym_identifier, - ACTIONS(1951), 1, - anon_sym_RBRACE, - ACTIONS(1953), 1, - anon_sym_STAR_STAR, - STATE(1314), 1, - sym_string, - STATE(1315), 1, - sym_template_string, - STATE(1529), 1, - sym_match_double_star_pattern, - STATE(1586), 1, - sym_match_key_value_pattern, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1658), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - [58861] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1958), 1, - anon_sym_not, + ACTIONS(1926), 1, + anon_sym_EQ, ACTIONS(1964), 1, + anon_sym_not, + ACTIONS(1970), 1, anon_sym_is, - STATE(996), 1, + STATE(1001), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1961), 2, + ACTIONS(1967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1955), 6, + ACTIONS(1961), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1916), 8, + ACTIONS(1924), 7, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [58896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(272), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(916), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [58925] = 2, + anon_sym_SEMI, + [59292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 19, + ACTIONS(1973), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -73553,10 +73953,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [58950] = 2, + [59317] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 1, + anon_sym_EQ, + ACTIONS(1978), 1, + anon_sym_not, + ACTIONS(1984), 1, + anon_sym_is, + STATE(1003), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1981), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1975), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1924), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [59354] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + anon_sym_not, + ACTIONS(1836), 1, + anon_sym_is, + ACTIONS(1942), 1, + anon_sym_EQ, + STATE(1003), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1834), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1816), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [59391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 19, + ACTIONS(1272), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -73576,28 +74034,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [58975] = 8, + [59416] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - anon_sym_EQ, - ACTIONS(1974), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1987), 1, + sym_identifier, + ACTIONS(1989), 1, + anon_sym_RBRACE, + ACTIONS(1991), 1, + anon_sym_STAR_STAR, + STATE(1369), 1, + sym_string, + STATE(1373), 1, + sym_template_string, + STATE(1557), 1, + sym_match_key_value_pattern, + STATE(1568), 1, + sym_match_double_star_pattern, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1652), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + [59469] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1987), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_STAR_STAR, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(1369), 1, + sym_string, + STATE(1373), 1, + sym_template_string, + STATE(1498), 1, + sym_match_key_value_pattern, + STATE(1553), 1, + sym_match_double_star_pattern, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1652), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + [59522] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1768), 1, anon_sym_not, - ACTIONS(1980), 1, + ACTIONS(1776), 1, anon_sym_is, - STATE(1000), 1, + ACTIONS(1942), 1, + anon_sym_EQ, + STATE(1001), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1977), 2, + ACTIONS(1774), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1971), 6, + ACTIONS(1756), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1916), 7, + ACTIONS(1940), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -73605,10 +74137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SEMI, - [59012] = 2, + [59559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 19, + ACTIONS(1995), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -73628,10 +74160,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59037] = 2, + [59584] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(1884), 1, + anon_sym_DASH, + ACTIONS(1892), 1, + sym_integer, + ACTIONS(1894), 1, + sym_float, + ACTIONS(1987), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_STAR_STAR, + ACTIONS(1997), 1, + anon_sym_RBRACE, + STATE(1369), 1, + sym_string, + STATE(1373), 1, + sym_template_string, + STATE(1555), 1, + sym_match_double_star_pattern, + STATE(1557), 1, + sym_match_key_value_pattern, + STATE(1116), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1652), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1896), 3, + sym_true, + sym_false, + sym_none, + [59637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(928), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(303), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 19, + ACTIONS(1999), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -73651,46 +74245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59062] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - anon_sym_EQ, - ACTIONS(1988), 1, - anon_sym_not, - ACTIONS(1994), 1, - anon_sym_is, - STATE(1003), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1991), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1985), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1916), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_COLON2, - sym_type_conversion, - [59099] = 4, + [59691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 2, + ACTIONS(1209), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1997), 3, + ACTIONS(2001), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1230), 14, + ACTIONS(1204), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -73705,55 +74270,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [59128] = 8, + [59720] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(1792), 1, anon_sym_not, - ACTIONS(1758), 1, + ACTIONS(1800), 1, anon_sym_is, - ACTIONS(1914), 1, - anon_sym_EQ, - STATE(1003), 1, + STATE(1015), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1756), 2, + ACTIONS(1798), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1738), 6, + ACTIONS(1782), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1912), 7, + ACTIONS(1940), 8, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_COLON2, - sym_type_conversion, - [59165] = 7, + [59755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 1, + ACTIONS(2006), 1, anon_sym_not, - ACTIONS(1824), 1, + ACTIONS(2012), 1, anon_sym_is, - STATE(996), 1, + STATE(1015), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1822), 2, + ACTIONS(2009), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1806), 6, + ACTIONS(2003), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1912), 8, + ACTIONS(1924), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -73762,156 +74326,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [59200] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1949), 1, - sym_identifier, - ACTIONS(1953), 1, - anon_sym_STAR_STAR, - ACTIONS(1999), 1, - anon_sym_RBRACE, - STATE(1314), 1, - sym_string, - STATE(1315), 1, - sym_template_string, - STATE(1485), 1, - sym_match_key_value_pattern, - STATE(1560), 1, - sym_match_double_star_pattern, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1658), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - [59253] = 8, + [59790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 1, + ACTIONS(1860), 1, anon_sym_not, - ACTIONS(1788), 1, + ACTIONS(1868), 1, anon_sym_is, - ACTIONS(1914), 1, - anon_sym_EQ, - STATE(1000), 1, + STATE(1019), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1786), 2, + ACTIONS(1866), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1768), 6, + ACTIONS(1848), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1912), 7, - sym__newline, - anon_sym_from, + ACTIONS(1940), 7, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_SEMI, - [59290] = 16, + [59824] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(1872), 1, - sym_integer, - ACTIONS(1874), 1, - sym_float, - ACTIONS(1949), 1, - sym_identifier, - ACTIONS(1953), 1, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1566), 1, + anon_sym_PIPE, + ACTIONS(1570), 1, + anon_sym_LBRACK, + ACTIONS(1572), 1, anon_sym_STAR_STAR, - ACTIONS(2001), 1, - anon_sym_RBRACE, - STATE(1314), 1, - sym_string, - STATE(1315), 1, - sym_template_string, - STATE(1584), 1, - sym_match_double_star_pattern, - STATE(1586), 1, - sym_match_key_value_pattern, - STATE(1168), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1658), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1876), 3, - sym_true, - sym_false, - sym_none, - [59343] = 7, + ACTIONS(1580), 1, + anon_sym_AMP, + ACTIONS(1582), 1, + anon_sym_CARET, + ACTIONS(1560), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1562), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1568), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(708), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1576), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [59870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 1, - anon_sym_not, - ACTIONS(1856), 1, - anon_sym_is, - STATE(1011), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1854), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1836), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1912), 7, - anon_sym_RPAREN, + ACTIONS(2015), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(1000), 1, + aux_sym__patterns_repeat1, + ACTIONS(2017), 16, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [59377] = 7, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 1, + ACTIONS(2022), 1, anon_sym_not, - ACTIONS(2012), 1, + ACTIONS(2028), 1, anon_sym_is, - STATE(1011), 1, + STATE(1019), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(2009), 2, + ACTIONS(2025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2003), 6, + ACTIONS(2019), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1916), 7, + ACTIONS(1924), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -73919,17 +74437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [59411] = 4, + [59932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(2031), 1, anon_sym_COMMA, - STATE(994), 1, - aux_sym__patterns_repeat1, - ACTIONS(2017), 16, + ACTIONS(2033), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2035), 1, anon_sym_EQ, + STATE(1018), 1, + aux_sym__patterns_repeat1, + ACTIONS(2037), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73943,526 +74462,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [59439] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1614), 1, - anon_sym_PIPE, - ACTIONS(1618), 1, - anon_sym_LBRACK, - ACTIONS(1620), 1, - anon_sym_STAR_STAR, - ACTIONS(1628), 1, - anon_sym_AMP, - ACTIONS(1630), 1, - anon_sym_CARET, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1616), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(734), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1624), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [59485] = 12, + [59963] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2025), 1, + ACTIONS(2045), 1, anon_sym_COLON, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1720), 1, + STATE(1691), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59528] = 12, + [60006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2031), 1, + ACTIONS(2051), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1682), 1, + STATE(1752), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59571] = 12, + [60049] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2033), 1, + ACTIONS(2053), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, - sym__parameters, - STATE(1710), 1, + STATE(1639), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1689), 1, + sym__parameters, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59614] = 6, + [60092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, - anon_sym_COMMA, - ACTIONS(2037), 1, - anon_sym_COLON, ACTIONS(2039), 1, - anon_sym_EQ, - STATE(1012), 1, - aux_sym__patterns_repeat1, - ACTIONS(2041), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [59645] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2043), 1, + ACTIONS(2055), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1622), 1, + STATE(1729), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59688] = 12, + [60135] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2045), 1, + ACTIONS(2057), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1605), 1, + STATE(1667), 1, sym_lambda_parameters, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59731] = 12, + [60178] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2047), 1, + ACTIONS(2059), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1705), 1, + STATE(1697), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59774] = 12, + [60221] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, - anon_sym_SLASH, ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2061), 1, anon_sym_COLON, - STATE(1453), 1, + STATE(1406), 1, sym_parameter, - STATE(1606), 1, + STATE(1689), 1, sym__parameters, - STATE(1642), 1, + STATE(1732), 1, sym_lambda_parameters, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59817] = 11, + [60264] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2051), 1, + ACTIONS(2063), 1, sym_identifier, - ACTIONS(2053), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - STATE(1511), 1, + STATE(1445), 1, sym_parameter, - STATE(1613), 1, + STATE(1682), 1, sym__parameters, - STATE(1510), 2, + STATE(1507), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59857] = 13, + [60304] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, ACTIONS(317), 1, sym__template_string_start, - ACTIONS(1864), 1, + ACTIONS(1884), 1, anon_sym_DASH, - ACTIONS(1872), 1, + ACTIONS(1892), 1, sym_integer, - ACTIONS(1874), 1, + ACTIONS(1894), 1, sym_float, - ACTIONS(1949), 1, + ACTIONS(1987), 1, sym_identifier, - STATE(1314), 1, + STATE(1369), 1, sym_string, - STATE(1315), 1, + STATE(1373), 1, sym_template_string, - STATE(1586), 1, + STATE(1557), 1, sym_match_key_value_pattern, - STATE(1168), 2, + STATE(1116), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1658), 2, + STATE(1652), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1876), 3, + ACTIONS(1896), 3, sym_true, sym_false, sym_none, - [59901] = 10, + [60348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_LPAREN, - ACTIONS(2023), 1, - anon_sym_STAR, - ACTIONS(2027), 1, - anon_sym_STAR_STAR, - ACTIONS(2029), 1, - anon_sym_SLASH, - ACTIONS(2051), 1, + ACTIONS(2033), 1, + anon_sym_COLON, + ACTIONS(2035), 1, + anon_sym_EQ, + ACTIONS(2037), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60373] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 1, + anon_sym_LPAREN, + ACTIONS(2043), 1, + anon_sym_STAR, + ACTIONS(2047), 1, + anon_sym_STAR_STAR, + ACTIONS(2049), 1, + anon_sym_SLASH, + ACTIONS(2063), 1, sym_identifier, - ACTIONS(2055), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1510), 2, + STATE(1507), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59938] = 10, + [60410] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2055), 1, + ACTIONS(2067), 1, anon_sym_COLON, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [59975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(2039), 1, - anon_sym_EQ, - ACTIONS(2041), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [60000] = 10, + [60447] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2051), 1, + ACTIONS(2063), 1, sym_identifier, - ACTIONS(2057), 1, + ACTIONS(2069), 1, anon_sym_RPAREN, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1510), 2, + STATE(1507), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [60037] = 10, + [60484] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2057), 1, + ACTIONS(2069), 1, anon_sym_COLON, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [60074] = 9, + [60521] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - ACTIONS(2051), 1, + ACTIONS(2063), 1, sym_identifier, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1510), 2, + STATE(1507), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [60108] = 9, + [60555] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2041), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, + ACTIONS(2043), 1, anon_sym_STAR, - ACTIONS(2027), 1, + ACTIONS(2047), 1, anon_sym_STAR_STAR, - ACTIONS(2029), 1, + ACTIONS(2049), 1, anon_sym_SLASH, - STATE(1383), 1, + STATE(1437), 1, sym_parameter, - STATE(1574), 2, + STATE(1606), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1454), 6, + STATE(1410), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [60142] = 3, + [60589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, + ACTIONS(1574), 1, anon_sym_as, - ACTIONS(2059), 12, + ACTIONS(1558), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -74475,12 +74936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - [60163] = 3, + [60610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1622), 1, + ACTIONS(2073), 1, anon_sym_as, - ACTIONS(1606), 12, + ACTIONS(2071), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -74493,14 +74954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - [60184] = 4, + [60631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, + ACTIONS(2077), 1, anon_sym_DOT, - STATE(1033), 1, + STATE(1039), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2063), 10, + ACTIONS(2075), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -74511,55 +74972,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [60206] = 9, - ACTIONS(2068), 1, + [60653] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2074), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2077), 1, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2079), 1, + ACTIONS(2088), 1, sym__string_end, - STATE(1034), 1, + STATE(1056), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2071), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60237] = 4, + [60684] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, - sym__template_string_start, - STATE(760), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(2081), 8, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(2092), 1, anon_sym_if, + ACTIONS(2094), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RBRACE, - [60258] = 5, + ACTIONS(2102), 1, + anon_sym_and, + ACTIONS(2104), 1, + anon_sym_or, + STATE(1106), 1, + sym_for_in_clause, + STATE(1310), 1, + aux_sym__collection_elements_repeat1, + STATE(1676), 1, + sym__comprehension_clauses, + [60721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2085), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - STATE(1033), 1, + STATE(1064), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2087), 8, + ACTIONS(2110), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -74568,437 +75037,475 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [60281] = 9, - ACTIONS(2077), 1, + [60744] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(666), 1, + sym__template_string_start, + STATE(750), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(2112), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [60765] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2095), 1, - sym__string_end, - STATE(1039), 1, - aux_sym_string_repeat1, - STATE(1254), 1, - sym_string_content, - STATE(1255), 1, - sym_interpolation, - STATE(1149), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2091), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [60312] = 9, - ACTIONS(2077), 1, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LBRACE2, - ACTIONS(2093), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, + ACTIONS(2114), 1, sym__string_end, - STATE(1040), 1, + STATE(1046), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60343] = 9, - ACTIONS(2077), 1, + [60796] = 9, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2116), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2122), 1, anon_sym_BSLASH, - ACTIONS(2099), 1, + ACTIONS(2125), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2119), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60374] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [60827] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2101), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2127), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60405] = 12, + [60858] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2105), 1, + ACTIONS(2092), 1, anon_sym_if, - ACTIONS(2107), 1, + ACTIONS(2094), 1, anon_sym_COLON, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2113), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - ACTIONS(2115), 1, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2104), 1, anon_sym_or, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1719), 1, + STATE(1728), 1, sym__comprehension_clauses, - [60442] = 9, - ACTIONS(2077), 1, + [60895] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2129), 1, + anon_sym_RPAREN, + ACTIONS(2131), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_if, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + STATE(1106), 1, + sym_for_in_clause, + STATE(1310), 1, + aux_sym__collection_elements_repeat1, + STATE(1711), 1, + sym__comprehension_clauses, + [60932] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2119), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2142), 1, sym__string_end, - STATE(1054), 1, + STATE(1051), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60473] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [60963] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2121), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2144), 1, sym__string_end, - STATE(1034), 1, + STATE(1052), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60504] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [60994] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2123), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2146), 1, sym__string_end, - STATE(1046), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60535] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61025] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2125), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2148), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60566] = 9, - ACTIONS(2077), 1, + [61056] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, + ACTIONS(2075), 11, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [61073] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2127), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2150), 1, sym__string_end, - STATE(1034), 1, + STATE(1057), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60597] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61104] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2129), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2152), 1, sym__string_end, - STATE(1049), 1, + STATE(1058), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60628] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61135] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2131), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2154), 1, sym__string_end, - STATE(1050), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60659] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61166] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2133), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2156), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60690] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61197] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2135), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2158), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60721] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61228] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2137), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2160), 1, sym__string_end, - STATE(1052), 1, + STATE(1065), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60752] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61259] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2139), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2162), 1, sym__string_end, - STATE(1034), 1, + STATE(1062), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60783] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61290] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2141), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2164), 1, sym__string_end, - STATE(1043), 1, + STATE(1066), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60814] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, + [61321] = 9, + ACTIONS(2080), 1, anon_sym_LBRACE2, - ACTIONS(2093), 1, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2143), 1, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2166), 1, sym__string_end, - STATE(1034), 1, + STATE(1045), 1, aux_sym_string_repeat1, - STATE(1254), 1, + STATE(1248), 1, sym_string_content, - STATE(1255), 1, + STATE(1252), 1, sym_interpolation, STATE(1149), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(2091), 3, + ACTIONS(2082), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [60845] = 12, + [61352] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2105), 1, + ACTIONS(2092), 1, anon_sym_if, - ACTIONS(2107), 1, + ACTIONS(2094), 1, anon_sym_COLON, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2113), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - ACTIONS(2115), 1, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2104), 1, anon_sym_or, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1672), 1, + STATE(1695), 1, sym__comprehension_clauses, - [60882] = 2, + [61389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 11, - anon_sym_import, + ACTIONS(2106), 1, anon_sym_DOT, + ACTIONS(2168), 1, anon_sym_LPAREN, + STATE(1039), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2170), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75007,108 +75514,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [60899] = 12, - ACTIONS(3), 1, + [61412] = 9, + ACTIONS(2080), 1, + anon_sym_LBRACE2, + ACTIONS(2084), 1, + anon_sym_BSLASH, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2145), 1, - anon_sym_RPAREN, - ACTIONS(2147), 1, - anon_sym_COMMA, - ACTIONS(2150), 1, - anon_sym_as, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - STATE(1091), 1, - sym_for_in_clause, - STATE(1267), 1, - aux_sym__collection_elements_repeat1, - STATE(1731), 1, - sym__comprehension_clauses, - [60936] = 12, - ACTIONS(3), 1, + ACTIONS(2172), 1, + sym__string_end, + STATE(1045), 1, + aux_sym_string_repeat1, + STATE(1248), 1, + sym_string_content, + STATE(1252), 1, + sym_interpolation, + STATE(1149), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2082), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [61443] = 9, + ACTIONS(2080), 1, + anon_sym_LBRACE2, + ACTIONS(2084), 1, + anon_sym_BSLASH, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2105), 1, - anon_sym_if, - ACTIONS(2107), 1, - anon_sym_COLON, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2113), 1, - anon_sym_RBRACE, - ACTIONS(2115), 1, - anon_sym_and, - ACTIONS(2117), 1, - anon_sym_or, - STATE(1091), 1, - sym_for_in_clause, - STATE(1267), 1, - aux_sym__collection_elements_repeat1, - STATE(1603), 1, - sym__comprehension_clauses, - [60973] = 12, + ACTIONS(2174), 1, + sym__string_end, + STATE(1045), 1, + aux_sym_string_repeat1, + STATE(1248), 1, + sym_string_content, + STATE(1252), 1, + sym_interpolation, + STATE(1149), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2082), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [61474] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2105), 1, + ACTIONS(2092), 1, anon_sym_if, - ACTIONS(2107), 1, + ACTIONS(2094), 1, anon_sym_COLON, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2113), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - ACTIONS(2115), 1, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2104), 1, anon_sym_or, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1666), 1, + STATE(1717), 1, sym__comprehension_clauses, - [61010] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - ACTIONS(2158), 1, - anon_sym_LPAREN, - STATE(1036), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2160), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [61033] = 4, + [61511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(664), 1, sym__string_start, - STATE(759), 2, + STATE(749), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2081), 8, + ACTIONS(2112), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75117,38 +75600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [61054] = 9, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2089), 1, - anon_sym_LBRACE2, - ACTIONS(2093), 1, - anon_sym_BSLASH, - ACTIONS(2162), 1, - sym__string_end, - STATE(1045), 1, - aux_sym_string_repeat1, - STATE(1254), 1, - sym_string_content, - STATE(1255), 1, - sym_interpolation, - STATE(1149), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2091), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [61085] = 5, + [61532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - ACTIONS(2166), 1, + ACTIONS(2178), 1, anon_sym_as, - ACTIONS(2164), 7, + ACTIONS(2176), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -75156,264 +75615,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61107] = 11, + anon_sym_or, + [61552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2168), 1, + ACTIONS(2180), 1, anon_sym_RPAREN, - ACTIONS(2170), 1, - anon_sym_COMMA, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1400), 1, - aux_sym_argument_list_repeat1, - STATE(1652), 1, + STATE(1310), 1, + aux_sym__collection_elements_repeat1, + STATE(1628), 1, sym__comprehension_clauses, - [61141] = 6, + [61586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2174), 1, - anon_sym_as, - ACTIONS(2172), 6, + ACTIONS(2176), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [61165] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2176), 7, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - [61187] = 5, + [61606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2136), 1, + anon_sym_if, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2186), 1, + ACTIONS(2188), 1, anon_sym_as, - ACTIONS(2184), 7, + ACTIONS(2186), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61209] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - ACTIONS(2188), 1, - anon_sym_RPAREN, - STATE(1091), 1, - sym_for_in_clause, - STATE(1267), 1, - aux_sym__collection_elements_repeat1, - STATE(1652), 1, - sym__comprehension_clauses, - [61243] = 5, + [61630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2172), 7, + ACTIONS(2192), 1, + anon_sym_as, + ACTIONS(2190), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - [61265] = 11, + [61652] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2129), 1, + anon_sym_RPAREN, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1657), 1, + STATE(1711), 1, sym__comprehension_clauses, - [61299] = 11, + [61686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2192), 1, - anon_sym_RPAREN, ACTIONS(2194), 1, + anon_sym_RPAREN, + ACTIONS(2196), 1, anon_sym_COMMA, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1423), 1, + STATE(1476), 1, aux_sym_argument_list_repeat1, - STATE(1731), 1, + STATE(1673), 1, sym__comprehension_clauses, - [61333] = 6, + [61720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2184), 1, anon_sym_or, ACTIONS(2198), 1, - anon_sym_as, - ACTIONS(2196), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [61357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - ACTIONS(2202), 1, - anon_sym_as, - ACTIONS(2200), 7, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [61379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2164), 8, + ACTIONS(2186), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - [61399] = 11, + [61742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2204), 1, - anon_sym_RPAREN, - ACTIONS(2206), 1, - anon_sym_COMMA, - STATE(1091), 1, - sym_for_in_clause, - STATE(1448), 1, - aux_sym_argument_list_repeat1, - STATE(1657), 1, - sym__comprehension_clauses, - [61433] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2166), 1, + ACTIONS(2202), 1, anon_sym_as, - ACTIONS(2164), 8, + ACTIONS(2200), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_or, - [61453] = 3, + [61766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(2206), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2208), 8, + ACTIONS(2204), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75422,289 +75786,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [61471] = 4, + [61784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2184), 8, + ACTIONS(2210), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2208), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - [61491] = 11, + [61802] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2113), 1, + ACTIONS(2100), 1, anon_sym_RBRACK, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1726), 1, + STATE(1754), 1, sym__comprehension_clauses, - [61525] = 5, + [61836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2196), 7, + ACTIONS(2212), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - [61547] = 4, + [61856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2136), 1, + anon_sym_if, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2200), 8, + ACTIONS(2216), 1, + anon_sym_as, + ACTIONS(2214), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - [61567] = 6, + [61880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2212), 1, + ACTIONS(2178), 1, anon_sym_as, - ACTIONS(2176), 6, + ACTIONS(2176), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61591] = 11, + [61902] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2214), 1, + ACTIONS(2218), 1, anon_sym_RPAREN, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1670), 1, + STATE(1673), 1, sym__comprehension_clauses, - [61625] = 11, + [61936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2113), 1, - anon_sym_RBRACK, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2184), 1, anon_sym_or, - STATE(1091), 1, - sym_for_in_clause, - STATE(1267), 1, - aux_sym__collection_elements_repeat1, - STATE(1686), 1, - sym__comprehension_clauses, - [61659] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2200), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2113), 1, + anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - STATE(1091), 1, - sym_for_in_clause, - STATE(1267), 1, - aux_sym__collection_elements_repeat1, - STATE(1732), 1, - sym__comprehension_clauses, - [61693] = 11, + anon_sym_RBRACE, + anon_sym_EQ, + [61958] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2113), 1, - anon_sym_RBRACK, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - STATE(1091), 1, + ACTIONS(2220), 1, + anon_sym_RPAREN, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1659), 1, + STATE(1618), 1, sym__comprehension_clauses, - [61727] = 11, + [61992] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2152), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2216), 1, + ACTIONS(2222), 1, anon_sym_RPAREN, - ACTIONS(2218), 1, + ACTIONS(2224), 1, anon_sym_COMMA, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, STATE(1441), 1, aux_sym_argument_list_repeat1, - STATE(1670), 1, + STATE(1628), 1, sym__comprehension_clauses, - [61761] = 3, + [62026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2220), 8, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2190), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [61779] = 3, + anon_sym_EQ, + [62046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2164), 9, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2214), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_or, - [61797] = 11, + [62068] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2145), 1, - anon_sym_RPAREN, - ACTIONS(2152), 1, + ACTIONS(2100), 1, + anon_sym_RBRACK, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1267), 1, + STATE(1310), 1, aux_sym__collection_elements_repeat1, - STATE(1731), 1, + STATE(1713), 1, sym__comprehension_clauses, - [61831] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2226), 1, - anon_sym_if, - ACTIONS(2224), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1095), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [61854] = 4, + [62102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2228), 7, + ACTIONS(2226), 1, + anon_sym_as, + ACTIONS(2212), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -75712,80 +76034,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61873] = 4, + [62124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_PIPE, - STATE(1100), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2230), 7, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [61892] = 5, + ACTIONS(2136), 1, + anon_sym_if, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + STATE(1106), 1, + sym_for_in_clause, + STATE(1310), 1, + aux_sym__collection_elements_repeat1, + STATE(1675), 1, + sym__comprehension_clauses, + [62158] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2234), 6, + ACTIONS(2228), 1, anon_sym_RPAREN, + ACTIONS(2230), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - [61913] = 6, + STATE(1106), 1, + sym_for_in_clause, + STATE(1459), 1, + aux_sym_argument_list_repeat1, + STATE(1711), 1, + sym__comprehension_clauses, + [62192] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2226), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2236), 3, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + ACTIONS(2232), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1101), 3, + ACTIONS(2234), 1, + anon_sym_COMMA, + STATE(1106), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [61936] = 7, + STATE(1526), 1, + aux_sym_argument_list_repeat1, + STATE(1618), 1, + sym__comprehension_clauses, + [62226] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2240), 1, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RBRACK, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2140), 1, anon_sym_or, - STATE(1220), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2242), 4, + STATE(1106), 1, + sym_for_in_clause, + STATE(1310), 1, + aux_sym__collection_elements_repeat1, + STATE(1722), 1, + sym__comprehension_clauses, + [62260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2176), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [61961] = 4, + anon_sym_or, + [62278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2228), 7, + ACTIONS(2236), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -75793,29 +76156,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61980] = 4, + [62297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_PIPE, - STATE(1093), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2248), 7, + ACTIONS(2136), 1, + anon_sym_if, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + ACTIONS(2238), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [61999] = 4, + [62318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2228), 7, + ACTIONS(2236), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -75823,14 +76187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [62018] = 4, + [62337] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 1, + anon_sym_if, + ACTIONS(2245), 1, + anon_sym_async, + ACTIONS(2248), 1, + anon_sym_for, + ACTIONS(2240), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1100), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [62360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2253), 1, anon_sym_PIPE, - STATE(1100), 1, + STATE(1105), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2250), 7, + ACTIONS(2251), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75838,117 +76219,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [62037] = 6, + [62379] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2257), 1, - anon_sym_if, - ACTIONS(2260), 1, - anon_sym_async, - ACTIONS(2263), 1, - anon_sym_for, - ACTIONS(2255), 3, + anon_sym_PIPE, + STATE(1102), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2255), 7, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1101), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [62060] = 7, + [62398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2260), 1, anon_sym_COMMA, - ACTIONS(2240), 1, + ACTIONS(2262), 1, anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2268), 1, anon_sym_or, - STATE(1220), 1, + STATE(1274), 1, aux_sym_expression_list_repeat1, - ACTIONS(2266), 4, + ACTIONS(2264), 4, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [62085] = 2, + [62423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 8, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + ACTIONS(2236), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [62099] = 2, + [62442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 8, + ACTIONS(2253), 1, + anon_sym_PIPE, + STATE(1102), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2270), 7, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_COLON2, - sym_type_conversion, - [62113] = 2, + [62461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2274), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(2272), 3, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [62127] = 2, + STATE(1108), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [62484] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, + ACTIONS(2260), 1, anon_sym_COMMA, + ACTIONS(2262), 1, anon_sym_if, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(2266), 1, anon_sym_and, + ACTIONS(2268), 1, anon_sym_or, + STATE(1274), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2276), 4, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [62141] = 2, + [62509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2274), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(2278), 3, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [62155] = 2, + STATE(1100), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [62532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 8, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2238), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62169] = 2, + anon_sym_EQ, + [62553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 8, + ACTIONS(2280), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75957,10 +76362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62183] = 2, + [62567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 8, + ACTIONS(2282), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -75969,54 +76374,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62197] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - ACTIONS(2158), 1, - anon_sym_LPAREN, - ACTIONS(2280), 1, - anon_sym_EQ, - STATE(1036), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2160), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [62219] = 4, + [62581] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2176), 6, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(1113), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2282), 6, - anon_sym_RPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [62237] = 4, + anon_sym_EQ, + anon_sym_SEMI, + [62599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(2290), 1, anon_sym_COMMA, STATE(1113), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2286), 6, + ACTIONS(2288), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [62255] = 2, + [62617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 8, + ACTIONS(2293), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76025,22 +76414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62269] = 2, + [62631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 8, - anon_sym_RPAREN, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2190), 6, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [62283] = 2, + anon_sym_EQ, + anon_sym_SEMI, + [62649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 8, + ACTIONS(2112), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76049,184 +76440,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_COMMA, - STATE(1166), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2297), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [62315] = 2, + [62663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 8, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2295), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62329] = 4, + [62679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2184), 6, - anon_sym_COMMA, + ACTIONS(2299), 1, anon_sym_if, - anon_sym_RBRACE, + ACTIONS(2200), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62347] = 5, + anon_sym_SEMI, + [62699] = 6, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2301), 1, + anon_sym_LBRACE2, + ACTIONS(2306), 1, + anon_sym_BSLASH, + ACTIONS(2309), 1, + sym__string_end, + STATE(1119), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2303), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [62721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2262), 1, anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2196), 5, + ACTIONS(2311), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [62367] = 4, + [62741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2200), 6, - anon_sym_COMMA, + ACTIONS(2299), 1, anon_sym_if, - anon_sym_RBRACE, + ACTIONS(2186), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62385] = 3, + anon_sym_SEMI, + [62761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_and, - ACTIONS(2164), 7, + ACTIONS(2315), 1, anon_sym_COMMA, + STATE(1113), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2313), 6, + anon_sym_RPAREN, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_COLON2, - sym_type_conversion, - [62401] = 4, + [62779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2164), 6, + ACTIONS(2212), 6, + sym__newline, + anon_sym_from, anon_sym_COMMA, anon_sym_if, - anon_sym_RBRACE, anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62419] = 5, + anon_sym_SEMI, + [62797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_if, - ACTIONS(2244), 1, - anon_sym_and, - ACTIONS(2246), 1, - anon_sym_or, - ACTIONS(2176), 5, + ACTIONS(2317), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62439] = 5, + [62811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2172), 5, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2319), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62459] = 4, + [62831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2200), 6, + ACTIONS(1558), 8, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, + anon_sym_and, + anon_sym_or, anon_sym_SEMI, - [62477] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - anon_sym_AT, - ACTIONS(2307), 1, - anon_sym_async, - ACTIONS(2309), 1, - anon_sym_def, - ACTIONS(2311), 1, - anon_sym_class, - STATE(610), 2, - sym_function_definition, - sym_class_definition, - STATE(1257), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [62501] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - anon_sym_AT, - ACTIONS(2313), 1, - anon_sym_async, - ACTIONS(2315), 1, - anon_sym_def, - ACTIONS(2317), 1, - anon_sym_class, - STATE(550), 2, - sym_function_definition, - sym_class_definition, - STATE(1257), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [62525] = 2, + [62845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 8, + ACTIONS(2321), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76235,10 +76593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62539] = 2, + [62859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 8, + ACTIONS(2323), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76247,25 +76605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62553] = 5, + [62873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2071), 8, + sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2244), 1, + anon_sym_EQ, anon_sym_and, - ACTIONS(2246), 1, anon_sym_or, - ACTIONS(2234), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62573] = 2, + anon_sym_SEMI, + [62887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 8, + ACTIONS(2325), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76274,56 +76629,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62587] = 2, + [62901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 8, - anon_sym_RPAREN, + ACTIONS(1558), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RBRACE, - [62601] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, + anon_sym_EQ, anon_sym_and, - ACTIONS(2305), 1, anon_sym_or, - ACTIONS(2325), 1, - anon_sym_from, - ACTIONS(2327), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_if, - STATE(1272), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2331), 2, - sym__newline, - anon_sym_SEMI, - [62627] = 6, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_LBRACE2, - ACTIONS(2338), 1, - anon_sym_BSLASH, - ACTIONS(2341), 1, - sym__string_end, - STATE(1135), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(2335), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [62649] = 2, + anon_sym_COLON2, + sym_type_conversion, + [62915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 8, + ACTIONS(2327), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76332,10 +76653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62663] = 2, + [62929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 8, + ACTIONS(2329), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76344,10 +76665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62677] = 2, + [62943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 8, + ACTIONS(2331), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76356,23 +76677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62691] = 3, + [62957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2349), 7, - anon_sym_RPAREN, + ACTIONS(2335), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + STATE(1173), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2333), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [62707] = 2, + [62975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 8, + ACTIONS(2255), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76381,110 +76703,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62721] = 4, + [62989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2184), 6, - sym__newline, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2337), 1, anon_sym_from, + ACTIONS(2339), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, + STATE(1288), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2341), 2, + sym__newline, anon_sym_SEMI, - [62739] = 5, + [63015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2343), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63029] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2234), 5, + ACTIONS(2238), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, anon_sym_SEMI, - [62759] = 5, + [63049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_if, - ACTIONS(2244), 1, - anon_sym_and, - ACTIONS(2246), 1, - anon_sym_or, - ACTIONS(2355), 5, + ACTIONS(2345), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [62779] = 7, + [63063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2347), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2357), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 8, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1250), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2266), 3, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2351), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62803] = 5, + [63105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2198), 1, anon_sym_if, - ACTIONS(2176), 5, - sym__newline, - anon_sym_from, + ACTIONS(2311), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_SEMI, - [62823] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2164), 7, - sym__newline, - anon_sym_from, + ACTIONS(2071), 8, anon_sym_COMMA, anon_sym_if, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_and, anon_sym_or, - anon_sym_SEMI, - [62839] = 4, + anon_sym_COLON2, + sym_type_conversion, + [63139] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_AT, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_def, + ACTIONS(2357), 1, + anon_sym_class, + STATE(534), 2, + sym_function_definition, + sym_class_definition, + STATE(1257), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [63163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2164), 6, + ACTIONS(2176), 7, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, + anon_sym_or, anon_sym_SEMI, - [62857] = 2, + [63179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2359), 8, @@ -76496,8 +76865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62871] = 6, - ACTIONS(2077), 1, + [63193] = 6, + ACTIONS(2086), 1, sym_comment, ACTIONS(2361), 1, anon_sym_LBRACE2, @@ -76505,14 +76874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(2367), 1, sym__string_end, - STATE(1135), 2, + STATE(1119), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, ACTIONS(2363), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [62893] = 2, + [63215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2369), 8, @@ -76524,263 +76893,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62907] = 5, + [63229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2355), 5, + ACTIONS(2371), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62927] = 5, + [63243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2172), 5, - sym__newline, - anon_sym_from, + ACTIONS(2212), 6, anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SEMI, - [62947] = 5, + anon_sym_COLON2, + sym_type_conversion, + [63261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2102), 1, + anon_sym_and, + ACTIONS(2104), 1, + anon_sym_or, + ACTIONS(2212), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2180), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63279] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2092), 1, + anon_sym_if, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2104), 1, + anon_sym_or, + ACTIONS(2200), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_and, + ACTIONS(2104), 1, + anon_sym_or, + ACTIONS(2190), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_and, + ACTIONS(2176), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_or, - ACTIONS(2371), 5, + [63333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + anon_sym_and, + ACTIONS(2104), 1, + anon_sym_or, + ACTIONS(2176), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2373), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [62967] = 5, + [63365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2262), 1, anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2246), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2371), 5, + ACTIONS(2238), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [62987] = 5, + [63385] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_DOT, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_EQ, + STATE(1064), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2110), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [63407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2196), 5, + ACTIONS(2214), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, anon_sym_SEMI, - [63007] = 2, + [63427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2262), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(2266), 1, anon_sym_and, + ACTIONS(2268), 1, anon_sym_or, - anon_sym_SEMI, - [63021] = 4, + ACTIONS(2200), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(2092), 1, + anon_sym_if, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2156), 1, + ACTIONS(2104), 1, anon_sym_or, - ACTIONS(2373), 6, - anon_sym_RPAREN, - anon_sym_if, + ACTIONS(2214), 5, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_RBRACE, - [63039] = 4, + [63467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2184), 6, + ACTIONS(2190), 6, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [63057] = 5, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_if, - ACTIONS(2115), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2117), 1, - anon_sym_or, - ACTIONS(2196), 5, + ACTIONS(2176), 7, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_RBRACE, - [63077] = 4, + anon_sym_EQ, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [63501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(2092), 1, + anon_sym_if, + ACTIONS(2102), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2104), 1, anon_sym_or, - ACTIONS(2200), 6, + ACTIONS(2186), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [63095] = 3, + [63521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2164), 7, + ACTIONS(2268), 1, + anon_sym_or, + ACTIONS(2176), 6, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - [63111] = 4, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(2262), 1, + anon_sym_if, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2164), 6, + ACTIONS(2214), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [63129] = 5, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2262), 1, anon_sym_if, - ACTIONS(2115), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2176), 5, + ACTIONS(2319), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [63149] = 5, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2262), 1, anon_sym_if, - ACTIONS(2115), 1, + ACTIONS(2266), 1, anon_sym_and, - ACTIONS(2117), 1, + ACTIONS(2268), 1, anon_sym_or, - ACTIONS(2172), 5, + ACTIONS(2186), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [63169] = 4, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_COMMA, - STATE(1112), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2375), 6, + ACTIONS(2138), 1, + anon_sym_and, + ACTIONS(2140), 1, + anon_sym_or, + ACTIONS(2377), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [63187] = 4, + [63617] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(69), 1, + anon_sym_AT, + ACTIONS(2379), 1, + anon_sym_async, ACTIONS(2381), 1, + anon_sym_def, + ACTIONS(2383), 1, + anon_sym_class, + STATE(605), 2, + sym_function_definition, + sym_class_definition, + STATE(1257), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [63641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 1, anon_sym_COMMA, STATE(1113), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2379), 6, + ACTIONS(2385), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [63205] = 2, + [63659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, - sym__newline, - anon_sym_from, + ACTIONS(2391), 1, anon_sym_COMMA, + STATE(1122), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2389), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_SEMI, - [63219] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63677] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(2393), 1, + anon_sym_COMMA, + STATE(1243), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2276), 3, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [63233] = 2, + [63701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 8, + ACTIONS(2395), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -76789,42 +77266,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [63247] = 8, + [63715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_async, - ACTIONS(2111), 1, - anon_sym_for, - ACTIONS(2385), 1, + ACTIONS(2397), 1, anon_sym_COMMA, - ACTIONS(2387), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym_for_in_clause, - STATE(1507), 1, - aux_sym_dictionary_repeat1, - STATE(1721), 1, - sym__comprehension_clauses, - [63272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2389), 1, - anon_sym_except, - ACTIONS(2391), 1, - anon_sym_finally, - STATE(611), 1, - sym_finally_clause, - STATE(266), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [63293] = 2, + ACTIONS(2399), 1, + anon_sym_as, + ACTIONS(2401), 1, + anon_sym_if, + ACTIONS(2403), 1, + anon_sym_COLON, + ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, + anon_sym_or, + STATE(1364), 1, + aux_sym_exception_list_repeat1, + [63740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 7, + ACTIONS(2409), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -76832,2592 +77294,2834 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [63306] = 2, + [63753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 7, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2411), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [63319] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(2397), 1, - anon_sym_as, - ACTIONS(2399), 1, - anon_sym_if, - ACTIONS(2401), 1, - anon_sym_COLON, - ACTIONS(2403), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_or, - STATE(1342), 1, - aux_sym_exception_list_repeat1, - [63344] = 6, + [63772] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, - anon_sym_except, - ACTIONS(2391), 1, - anon_sym_finally, - STATE(521), 1, - sym_finally_clause, - STATE(273), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(279), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [63365] = 7, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2415), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR, + STATE(1290), 1, + sym_dotted_name, + STATE(1327), 1, + sym_aliased_import, + STATE(1559), 1, + sym__import_list, + STATE(1561), 1, + sym_wildcard_import, + [63797] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2327), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - STATE(1272), 1, + ACTIONS(2339), 1, + anon_sym_COMMA, + STATE(1288), 1, aux_sym_expression_list_repeat1, - ACTIONS(2407), 2, + ACTIONS(2419), 2, sym__newline, anon_sym_SEMI, - [63388] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2409), 1, - sym_identifier, - ACTIONS(2411), 1, - anon_sym_DOT, - ACTIONS(2413), 1, - anon_sym___future__, - STATE(1374), 1, - aux_sym_import_prefix_repeat1, - STATE(1419), 1, - sym_import_prefix, - STATE(1677), 2, - sym_relative_import, - sym_dotted_name, - [63411] = 5, + [63820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2176), 4, + ACTIONS(2200), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [63430] = 7, + [63839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2327), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_if, - STATE(1272), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2415), 2, - sym__newline, - anon_sym_SEMI, - [63453] = 5, + ACTIONS(2421), 1, + anon_sym_except, + ACTIONS(2423), 1, + anon_sym_finally, + STATE(540), 1, + sym_finally_clause, + STATE(266), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(283), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [63860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_if, - ACTIONS(2154), 1, - anon_sym_and, - ACTIONS(2156), 1, - anon_sym_or, - ACTIONS(2417), 4, - anon_sym_COMMA, + ACTIONS(2096), 1, anon_sym_async, + ACTIONS(2098), 1, anon_sym_for, - anon_sym_RBRACE, - [63472] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2419), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2421), 2, - sym__newline, - anon_sym_SEMI, - [63495] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_COMMA, - STATE(1360), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2425), 2, - sym__newline, - anon_sym_SEMI, - [63518] = 8, + ACTIONS(2427), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_for_in_clause, + STATE(1450), 1, + aux_sym_dictionary_repeat1, + STATE(1724), 1, + sym__comprehension_clauses, + [63885] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2413), 1, sym_identifier, + ACTIONS(2417), 1, + anon_sym_STAR, ACTIONS(2429), 1, anon_sym_LPAREN, - ACTIONS(2431), 1, - anon_sym_STAR, - STATE(1281), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1372), 1, + STATE(1327), 1, sym_aliased_import, - STATE(1517), 1, + STATE(1579), 1, sym__import_list, - STATE(1521), 1, + STATE(1580), 1, sym_wildcard_import, - [63543] = 5, + [63910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2355), 4, - sym__newline, - anon_sym_from, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2228), 1, + anon_sym_RPAREN, + ACTIONS(2230), 1, anon_sym_COMMA, - anon_sym_SEMI, - [63562] = 5, + STATE(1106), 1, + sym_for_in_clause, + STATE(1456), 1, + aux_sym_argument_list_repeat1, + STATE(1711), 1, + sym__comprehension_clauses, + [63935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2431), 1, + anon_sym_RPAREN, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1618), 1, + sym__comprehension_clauses, + [63960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2172), 4, + ACTIONS(2214), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [63581] = 2, + [63979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [63594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2184), 5, + ACTIONS(2190), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [63611] = 5, + [63996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_if, - ACTIONS(2244), 1, + ACTIONS(2405), 1, anon_sym_and, - ACTIONS(2246), 1, - anon_sym_or, - ACTIONS(2433), 4, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [63630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2059), 7, + ACTIONS(2176), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_and, anon_sym_or, - [63643] = 8, + [64011] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - sym_identifier, - ACTIONS(2431), 1, - anon_sym_STAR, - ACTIONS(2435), 1, - anon_sym_LPAREN, - STATE(1281), 1, - sym_dotted_name, - STATE(1372), 1, - sym_aliased_import, - STATE(1534), 1, - sym__import_list, - STATE(1535), 1, - sym_wildcard_import, - [63668] = 5, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2339), 1, + anon_sym_COMMA, + STATE(1288), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2433), 2, + sym__newline, + anon_sym_SEMI, + [64034] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2401), 1, + anon_sym_if, + ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, + anon_sym_or, ACTIONS(2437), 1, - sym_identifier, + anon_sym_as, + ACTIONS(2435), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [64055] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_COMMA, + ACTIONS(2401), 1, + anon_sym_if, + ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, + anon_sym_or, ACTIONS(2439), 1, - anon_sym_STAR, + anon_sym_as, ACTIONS(2441), 1, - anon_sym_STAR_STAR, - STATE(1483), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [63687] = 8, + anon_sym_COLON, + STATE(1364), 1, + aux_sym_exception_list_repeat1, + [64080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, ACTIONS(2443), 1, anon_sym_COMMA, ACTIONS(2445), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1413), 1, + STATE(1466), 1, aux_sym_dictionary_repeat1, - STATE(1601), 1, + STATE(1680), 1, sym__comprehension_clauses, - [63712] = 5, + [64105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2447), 4, + ACTIONS(2447), 1, + anon_sym_except, + ACTIONS(2449), 1, + anon_sym_finally, + STATE(564), 1, + sym_finally_clause, + STATE(281), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(282), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [64126] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2194), 1, anon_sym_RPAREN, + ACTIONS(2196), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [63731] = 5, + STATE(1106), 1, + sym_for_in_clause, + STATE(1472), 1, + aux_sym_argument_list_repeat1, + STATE(1673), 1, + sym__comprehension_clauses, + [64151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2196), 4, + ACTIONS(2186), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [63750] = 7, + [64170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2327), 1, + ACTIONS(1558), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2329), 1, + anon_sym_as, anon_sym_if, - STATE(1272), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2266), 2, - sym__newline, - anon_sym_SEMI, - [63773] = 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [64183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2433), 4, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2451), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, - [63792] = 4, + [64202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_STAR, + ACTIONS(2457), 1, + anon_sym_STAR_STAR, + STATE(1577), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [64221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2200), 5, + ACTIONS(2176), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [63809] = 3, + [64238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, - anon_sym_and, - ACTIONS(2164), 6, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_or, - [63824] = 8, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RPAREN, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1618), 1, + sym__comprehension_clauses, + [64263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2449), 1, - anon_sym_COMMA, - ACTIONS(2451), 1, + ACTIONS(2100), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1106), 1, sym_for_in_clause, - STATE(1437), 1, - aux_sym_dictionary_repeat1, - STATE(1667), 1, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1728), 1, sym__comprehension_clauses, - [63849] = 4, + [64288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_or, - ACTIONS(2164), 5, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [63866] = 5, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RBRACK, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1754), 1, + sym__comprehension_clauses, + [64313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2453), 4, + ACTIONS(2459), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [63885] = 5, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [64326] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - sym_identifier, - ACTIONS(2439), 1, - anon_sym_STAR, - ACTIONS(2441), 1, - anon_sym_STAR_STAR, - STATE(1519), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [63904] = 8, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1695), 1, + sym__comprehension_clauses, + [64351] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2461), 1, anon_sym_COMMA, - ACTIONS(2399), 1, - anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_or, - ACTIONS(2455), 1, - anon_sym_as, - ACTIONS(2457), 1, - anon_sym_COLON, - STATE(1342), 1, - aux_sym_exception_list_repeat1, - [63929] = 8, + ACTIONS(2463), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_for_in_clause, + STATE(1449), 1, + aux_sym_dictionary_repeat1, + STATE(1665), 1, + sym__comprehension_clauses, + [64376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2397), 1, anon_sym_COMMA, - ACTIONS(2399), 1, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2459), 1, + ACTIONS(2465), 1, anon_sym_as, - ACTIONS(2461), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(1342), 1, + STATE(1364), 1, aux_sym_exception_list_repeat1, - [63954] = 6, + [64401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, + ACTIONS(2397), 1, + anon_sym_COMMA, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2465), 1, + ACTIONS(2469), 1, anon_sym_as, - ACTIONS(2463), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2471), 1, anon_sym_COLON, - [63975] = 7, + STATE(1364), 1, + aux_sym_exception_list_repeat1, + [64426] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2327), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - STATE(1272), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2467), 2, - sym__newline, - anon_sym_SEMI, - [63998] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2327), 1, + ACTIONS(2339), 1, anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_if, - STATE(1272), 1, + STATE(1288), 1, aux_sym_expression_list_repeat1, - ACTIONS(2469), 2, + ACTIONS(2276), 2, sym__newline, anon_sym_SEMI, - [64021] = 2, + [64449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2471), 7, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2232), 1, anon_sym_RPAREN, + ACTIONS(2234), 1, anon_sym_COMMA, - anon_sym_if, + STATE(1106), 1, + sym_for_in_clause, + STATE(1521), 1, + aux_sym_argument_list_repeat1, + STATE(1618), 1, + sym__comprehension_clauses, + [64474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 1, anon_sym_async, + ACTIONS(2098), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [64034] = 6, + ACTIONS(2222), 1, + anon_sym_RPAREN, + ACTIONS(2224), 1, + anon_sym_COMMA, + STATE(1106), 1, + sym_for_in_clause, + STATE(1412), 1, + aux_sym_argument_list_repeat1, + STATE(1628), 1, + sym__comprehension_clauses, + [64499] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2473), 1, - anon_sym_except, + sym_identifier, ACTIONS(2475), 1, - anon_sym_finally, - STATE(566), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(269), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [64055] = 8, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym___future__, + STATE(1343), 1, + aux_sym_import_prefix_repeat1, + STATE(1462), 1, + sym_import_prefix, + STATE(1712), 2, + sym_relative_import, + sym_dotted_name, + [64522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_COMMA, - ACTIONS(2399), 1, - anon_sym_if, - ACTIONS(2403), 1, - anon_sym_and, ACTIONS(2405), 1, + anon_sym_and, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2477), 1, - anon_sym_as, - ACTIONS(2479), 1, - anon_sym_COLON, - STATE(1342), 1, - aux_sym_exception_list_repeat1, - [64080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 7, + ACTIONS(2212), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [64093] = 5, + [64539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2371), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_SEMI, - [64112] = 6, + ACTIONS(2421), 1, + anon_sym_except, + ACTIONS(2423), 1, + anon_sym_finally, + STATE(556), 1, + sym_finally_clause, + STATE(267), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(275), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [64560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2447), 1, anon_sym_except, - ACTIONS(2475), 1, + ACTIONS(2449), 1, anon_sym_finally, - STATE(608), 1, + STATE(533), 1, sym_finally_clause, STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(276), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [64133] = 8, + STATE(278), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [64581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, anon_sym_async, - ACTIONS(2111), 1, + ACTIONS(2098), 1, anon_sym_for, - ACTIONS(2481), 1, - anon_sym_COMMA, - ACTIONS(2483), 1, - anon_sym_RBRACE, - STATE(1091), 1, + ACTIONS(2100), 1, + anon_sym_RPAREN, + STATE(1106), 1, sym_for_in_clause, - STATE(1501), 1, - aux_sym_dictionary_repeat1, - STATE(1678), 1, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1628), 1, sym__comprehension_clauses, - [64158] = 3, + [64606] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - anon_sym_as, - ACTIONS(2485), 6, - anon_sym_RPAREN, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [64173] = 7, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1722), 1, + sym__comprehension_clauses, + [64631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2423), 1, - anon_sym_COMMA, - STATE(1354), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2489), 2, + ACTIONS(2311), 4, sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [64196] = 4, + [64650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(1224), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2493), 4, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2319), 4, sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_SEMI, - [64212] = 4, + [64669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_COMMA, - STATE(1218), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2495), 4, - anon_sym_RPAREN, + ACTIONS(2262), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [64228] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2502), 4, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [64244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2502), 4, + ACTIONS(2266), 1, + anon_sym_and, + ACTIONS(2268), 1, + anon_sym_or, + ACTIONS(2451), 4, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [64260] = 2, + [64688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 6, + ACTIONS(2288), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [64272] = 4, + [64701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - STATE(1033), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2506), 4, - anon_sym_import, - anon_sym_RPAREN, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2479), 1, anon_sym_COMMA, - anon_sym_as, - [64288] = 6, + STATE(1380), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2481), 2, + sym__newline, + anon_sym_SEMI, + [64724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2510), 1, - anon_sym_COLON, - ACTIONS(2508), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [64308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(1249), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2506), 4, - sym__newline, + ACTIONS(2483), 4, anon_sym_COMMA, - anon_sym_as, - anon_sym_SEMI, - [64324] = 5, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [64743] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2512), 3, - sym__newline, + ACTIONS(2485), 1, anon_sym_COMMA, + STATE(1401), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2487), 2, + sym__newline, anon_sym_SEMI, - [64342] = 3, - ACTIONS(2077), 1, + [64766] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2516), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [64356] = 6, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RPAREN, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1711), 1, + sym__comprehension_clauses, + [64791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(2522), 1, - anon_sym_EQ, - STATE(1371), 1, - sym__type_bound, - STATE(1537), 1, - sym__type_param_default, - ACTIONS(2518), 2, + ACTIONS(2090), 1, anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RBRACK, - [64376] = 4, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1713), 1, + sym__comprehension_clauses, + [64816] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - STATE(1222), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2493), 4, - anon_sym_import, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1717), 1, + sym__comprehension_clauses, + [64841] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RPAREN, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1673), 1, + sym__comprehension_clauses, + [64866] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, anon_sym_COMMA, - anon_sym_as, - [64392] = 5, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, + anon_sym_RBRACK, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1675), 1, + sym__comprehension_clauses, + [64891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2524), 3, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2489), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_EQ, - [64410] = 3, - ACTIONS(2077), 1, + [64910] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2528), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [64424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - STATE(1231), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2530), 4, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2100), 1, anon_sym_RBRACE, - [64440] = 7, + STATE(1106), 1, + sym_for_in_clause, + STATE(1308), 1, + aux_sym__collection_elements_repeat1, + STATE(1676), 1, + sym__comprehension_clauses, + [64935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2071), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(2180), 1, + anon_sym_COLON, anon_sym_and, - ACTIONS(2182), 1, anon_sym_or, - ACTIONS(2216), 1, - anon_sym_RPAREN, - ACTIONS(2218), 1, - anon_sym_COMMA, - STATE(1441), 1, - aux_sym_argument_list_repeat1, - [64462] = 4, + [64948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2530), 4, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON2, - sym_type_conversion, - [64478] = 7, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_STAR, + ACTIONS(2457), 1, + anon_sym_STAR_STAR, + STATE(1409), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [64967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2339), 1, anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_COLON, - STATE(1250), 1, + STATE(1288), 1, aux_sym_expression_list_repeat1, - [64500] = 5, + ACTIONS(2491), 2, + sym__newline, + anon_sym_SEMI, + [64990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2540), 3, - anon_sym_RPAREN, + ACTIONS(2096), 1, + anon_sym_async, + ACTIONS(2098), 1, + anon_sym_for, + ACTIONS(2493), 1, anon_sym_COMMA, - anon_sym_COLON, - [64518] = 6, + ACTIONS(2495), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_for_in_clause, + STATE(1479), 1, + aux_sym_dictionary_repeat1, + STATE(1714), 1, + sym__comprehension_clauses, + [65015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2544), 1, - anon_sym_COLON, - ACTIONS(2542), 2, + ACTIONS(2276), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [64538] = 7, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [65028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2136), 1, anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2138), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2140), 1, anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2319), 4, anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(1250), 1, - aux_sym_expression_list_repeat1, - [64560] = 7, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [65047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2339), 1, anon_sym_COMMA, - ACTIONS(2548), 1, - anon_sym_COLON, - STATE(1250), 1, + STATE(1288), 1, aux_sym_expression_list_repeat1, - [64582] = 2, + ACTIONS(2497), 2, + sym__newline, + anon_sym_SEMI, + [65070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 6, + ACTIONS(2501), 1, + anon_sym_as, + ACTIONS(2499), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [64594] = 5, + [65085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2552), 3, + ACTIONS(2485), 1, + anon_sym_COMMA, + STATE(1390), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2503), 2, + sym__newline, + anon_sym_SEMI, + [65108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + anon_sym_DOT, + STATE(1242), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2075), 4, sym__newline, anon_sym_COMMA, + anon_sym_as, anon_sym_SEMI, - [64612] = 7, + [65124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2510), 1, anon_sym_COMMA, - ACTIONS(2554), 1, - anon_sym_COLON, - STATE(1250), 1, + STATE(1249), 1, aux_sym_expression_list_repeat1, - [64634] = 5, + ACTIONS(2508), 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [65140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2198), 1, anon_sym_if, - ACTIONS(2556), 3, + ACTIONS(2514), 1, + anon_sym_COLON, + ACTIONS(2512), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 1, + anon_sym_DOT, + STATE(1262), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2518), 4, sym__newline, anon_sym_COMMA, + anon_sym_as, anon_sym_SEMI, - [64652] = 5, + [65176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2198), 1, anon_sym_if, - ACTIONS(2453), 3, - sym__newline, - anon_sym_EQ, - anon_sym_SEMI, - [64670] = 5, + ACTIONS(2522), 1, + anon_sym_COLON, + ACTIONS(2520), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2558), 3, - anon_sym_RPAREN, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2524), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [65214] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2526), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2528), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [65228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, anon_sym_COMMA, + STATE(1249), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2530), 4, + anon_sym_RPAREN, anon_sym_COLON, - [64688] = 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + [65244] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2393), 1, anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(2535), 1, anon_sym_COLON, - STATE(1250), 1, + STATE(1243), 1, aux_sym_expression_list_repeat1, - [64710] = 7, + [65266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_DOT, + STATE(1256), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2518), 4, + anon_sym_import, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [65282] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2537), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2539), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [65296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2357), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2393), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(2541), 1, anon_sym_COLON, - STATE(1250), 1, + STATE(1243), 1, aux_sym_expression_list_repeat1, - [64732] = 4, + [65318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2502), 4, - anon_sym_RPAREN, + ACTIONS(2545), 1, anon_sym_COLON, + ACTIONS(2547), 1, + anon_sym_EQ, + STATE(1389), 1, + sym__type_bound, + STATE(1570), 1, + sym__type_param_default, + ACTIONS(2543), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RBRACE, - [64748] = 6, + [65338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, - anon_sym_DOT, - ACTIONS(2566), 1, - sym_identifier, - STATE(1374), 1, - aux_sym_import_prefix_repeat1, - STATE(1419), 1, - sym_import_prefix, - STATE(1661), 2, - sym_relative_import, - sym_dotted_name, - [64768] = 4, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2549), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [65356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 1, + ACTIONS(2106), 1, anon_sym_DOT, - STATE(1249), 1, + STATE(1039), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2063), 4, - sym__newline, + ACTIONS(2551), 4, + anon_sym_import, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_SEMI, - [64784] = 4, + [65372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2502), 4, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [64800] = 3, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2573), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2575), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [64814] = 3, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2577), 2, - anon_sym_LBRACE2, - anon_sym_BSLASH, - ACTIONS(2579), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [64828] = 5, + ACTIONS(2555), 1, + anon_sym_AT, + STATE(1257), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2553), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [65388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, - anon_sym_if, - ACTIONS(2403), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2405), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2581), 3, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2232), 1, + anon_sym_RPAREN, + ACTIONS(2234), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [64846] = 3, - ACTIONS(2077), 1, + STATE(1526), 1, + aux_sym_argument_list_repeat1, + [65410] = 3, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2558), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2585), 4, + ACTIONS(2560), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [64860] = 3, - ACTIONS(2077), 1, + [65424] = 3, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2587), 2, + ACTIONS(2562), 2, anon_sym_LBRACE2, anon_sym_BSLASH, - ACTIONS(2589), 4, + ACTIONS(2564), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [64874] = 6, + [65438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2593), 1, - anon_sym_COLON, - ACTIONS(2591), 2, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2566), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [64894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2597), 1, - anon_sym_AT, - STATE(1257), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2595), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [64910] = 5, + anon_sym_COLON, + [65456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2600), 2, + ACTIONS(2516), 1, + anon_sym_DOT, + STATE(1242), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2551), 4, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [64927] = 2, + anon_sym_as, + anon_sym_SEMI, + [65472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 5, + ACTIONS(2110), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [64938] = 5, + anon_sym_RBRACE, + [65484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2182), 1, anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2570), 1, + anon_sym_COLON, + ACTIONS(2568), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65504] = 7, + ACTIONS(3), 1, + sym_comment, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2417), 2, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2393), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [64955] = 5, + ACTIONS(2572), 1, + anon_sym_COLON, + STATE(1243), 1, + aux_sym_expression_list_repeat1, + [65526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2401), 1, anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2405), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2407), 1, anon_sym_or, - ACTIONS(2604), 2, + ACTIONS(2574), 3, anon_sym_COMMA, - anon_sym_RBRACK, - [64972] = 2, + anon_sym_as, + anon_sym_COLON, + [65544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 5, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2576), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [64983] = 5, + [65562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2606), 2, - anon_sym_RPAREN, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2578), 3, anon_sym_COMMA, - [65000] = 5, + anon_sym_RBRACK, + anon_sym_EQ, + [65580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2580), 1, sym_identifier, - STATE(1326), 1, + STATE(1343), 1, + aux_sym_import_prefix_repeat1, + STATE(1462), 1, + sym_import_prefix, + STATE(1620), 2, + sym_relative_import, sym_dotted_name, - STATE(1381), 1, - sym_aliased_import, - ACTIONS(2608), 2, - sym__newline, - anon_sym_SEMI, - [65017] = 5, + [65600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2530), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [65616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2610), 2, + ACTIONS(2489), 3, sym__newline, + anon_sym_EQ, anon_sym_SEMI, - [65034] = 2, + [65634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 5, + ACTIONS(2585), 1, anon_sym_COMMA, + STATE(1270), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2508), 4, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON2, sym_type_conversion, - [65045] = 4, + [65650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, + ACTIONS(2587), 1, anon_sym_COMMA, - STATE(1287), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2612), 3, + STATE(1249), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2508), 4, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [65060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2616), 2, - sym__newline, - anon_sym_SEMI, - [65077] = 6, + [65666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2589), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2508), 4, anon_sym_RBRACE, - ACTIONS(2620), 1, anon_sym_EQ, - ACTIONS(2622), 1, anon_sym_COLON2, - ACTIONS(2624), 1, sym_type_conversion, - STATE(1694), 1, - sym_format_specifier, - [65096] = 5, + [65682] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2591), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2593), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [65696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2182), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2198), 1, anon_sym_if, - ACTIONS(2626), 2, - sym__newline, - anon_sym_SEMI, - [65113] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - sym_identifier, - ACTIONS(2628), 1, - anon_sym_LPAREN, - STATE(1281), 1, - sym_dotted_name, - STATE(1372), 1, - sym_aliased_import, - STATE(1559), 1, - sym__import_list, - [65132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 1, + ACTIONS(2393), 1, anon_sym_COMMA, - STATE(1284), 1, + ACTIONS(2595), 1, + anon_sym_COLON, + STATE(1243), 1, aux_sym_expression_list_repeat1, - ACTIONS(2502), 3, - sym__newline, - anon_sym_from, - anon_sym_SEMI, - [65147] = 6, + [65718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2393), 1, + anon_sym_COMMA, + ACTIONS(2597), 1, anon_sym_COLON, - ACTIONS(2636), 1, - anon_sym_LBRACK, - STATE(1463), 1, - sym_type_parameters, - STATE(1611), 1, - sym_argument_list, - [65166] = 5, + STATE(1243), 1, + aux_sym_expression_list_repeat1, + [65740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2433), 2, + ACTIONS(2599), 3, sym__newline, + anon_sym_COMMA, anon_sym_SEMI, - [65183] = 5, + [65758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2638), 2, - anon_sym_RPAREN, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2393), 1, anon_sym_COMMA, - [65200] = 5, + ACTIONS(2601), 1, + anon_sym_COLON, + STATE(1243), 1, + aux_sym_expression_list_repeat1, + [65780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2605), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2603), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, + anon_sym_COLON, + anon_sym_RBRACK, + [65796] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2608), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2610), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [65810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [65822] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2640), 2, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_RBRACK, - [65217] = 5, + [65839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2305), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_if, - ACTIONS(2642), 2, + ACTIONS(2616), 2, sym__newline, anon_sym_SEMI, - [65234] = 4, + [65856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(2618), 1, + anon_sym_LPAREN, + ACTIONS(2620), 1, + anon_sym_COLON, + ACTIONS(2622), 1, + anon_sym_LBRACK, + STATE(1520), 1, + sym_type_parameters, + STATE(1701), 1, + sym_argument_list, + [65875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2624), 1, anon_sym_COMMA, - STATE(1284), 1, + STATE(1299), 1, aux_sym_expression_list_repeat1, - ACTIONS(2502), 3, + ACTIONS(2508), 3, sym__newline, anon_sym_from, anon_sym_SEMI, - [65249] = 6, - ACTIONS(2077), 1, + [65890] = 6, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(2648), 1, + ACTIONS(2628), 1, anon_sym_LBRACE2, - ACTIONS(2650), 1, + ACTIONS(2630), 1, aux_sym_format_specifier_token1, - STATE(1288), 1, + STATE(1315), 1, aux_sym_format_specifier_repeat1, - STATE(1446), 1, + STATE(1499), 1, sym_interpolation, - [65268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2652), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65285] = 5, + [65909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2632), 1, anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_as, - STATE(1322), 1, - aux_sym__import_list_repeat1, - ACTIONS(2658), 2, + STATE(1299), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2508), 3, sym__newline, + anon_sym_from, anon_sym_SEMI, - [65302] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2660), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [65319] = 6, + [65924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_LPAREN, + ACTIONS(2634), 1, + anon_sym_RBRACE, ACTIONS(2636), 1, - anon_sym_LBRACK, - ACTIONS(2662), 1, - anon_sym_COLON, - STATE(1470), 1, - sym_type_parameters, - STATE(1653), 1, - sym_argument_list, - [65338] = 4, + anon_sym_EQ, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(2640), 1, + sym_type_conversion, + STATE(1677), 1, + sym_format_specifier, + [65943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(2642), 1, anon_sym_COMMA, - STATE(1284), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2530), 3, + ACTIONS(2644), 1, + anon_sym_as, + STATE(1336), 1, + aux_sym__import_list_repeat1, + ACTIONS(2646), 2, sym__newline, - anon_sym_from, anon_sym_SEMI, - [65353] = 5, + [65960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2667), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [65370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_COMMA, - STATE(1287), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2612), 3, + ACTIONS(2311), 5, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [65385] = 4, + [65971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2483), 2, anon_sym_COMMA, - STATE(1287), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2671), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_RBRACE, - [65400] = 6, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2676), 1, - anon_sym_RBRACE, - ACTIONS(2678), 1, - anon_sym_LBRACE2, - ACTIONS(2681), 1, - aux_sym_format_specifier_token1, - STATE(1288), 1, - aux_sym_format_specifier_repeat1, - STATE(1446), 1, - sym_interpolation, - [65419] = 5, + [65988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - sym_identifier, - STATE(1326), 1, - sym_dotted_name, - STATE(1381), 1, - sym_aliased_import, - ACTIONS(2684), 2, + ACTIONS(2075), 5, sym__newline, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_SEMI, - [65436] = 4, + [65999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - STATE(1286), 1, + STATE(1309), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2113), 3, + ACTIONS(2100), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [65451] = 6, + [66014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2648), 2, + sym__newline, + anon_sym_SEMI, + [66031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 1, anon_sym_COLON2, - ACTIONS(2686), 1, + ACTIONS(2650), 1, anon_sym_RBRACE, - ACTIONS(2688), 1, + ACTIONS(2652), 1, anon_sym_EQ, - ACTIONS(2690), 1, + ACTIONS(2654), 1, sym_type_conversion, - STATE(1718), 1, + STATE(1651), 1, sym_format_specifier, - [65470] = 6, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACE2, - ACTIONS(2692), 1, - anon_sym_RBRACE, - ACTIONS(2694), 1, - aux_sym_format_specifier_token1, - STATE(1279), 1, - aux_sym_format_specifier_repeat1, - STATE(1446), 1, - sym_interpolation, - [65489] = 2, + [66050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 5, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2656), 2, anon_sym_RPAREN, anon_sym_COMMA, + [66067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [65500] = 2, + ACTIONS(2658), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 5, - sym__newline, - anon_sym_DOT, + ACTIONS(2660), 1, anon_sym_COMMA, - anon_sym_as, + STATE(1299), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2530), 3, + sym__newline, + anon_sym_from, anon_sym_SEMI, - [65511] = 5, + [66099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2413), 1, sym_identifier, - STATE(1326), 1, + STATE(1329), 1, sym_dotted_name, - STATE(1381), 1, + STATE(1428), 1, sym_aliased_import, - ACTIONS(2608), 2, + ACTIONS(2663), 2, sym__newline, anon_sym_SEMI, - [65528] = 5, + [66116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2311), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [66127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(2608), 1, - anon_sym_RPAREN, - STATE(1473), 1, + STATE(1329), 1, sym_dotted_name, - STATE(1553), 1, + STATE(1428), 1, sym_aliased_import, - [65544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_COMMA, - STATE(1321), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2698), 2, + ACTIONS(2665), 2, sym__newline, anon_sym_SEMI, - [65558] = 4, + [66144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2667), 2, anon_sym_COMMA, - STATE(1321), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2700), 2, - sym__newline, - anon_sym_SEMI, - [65572] = 5, + anon_sym_RBRACK, + [66161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_SEMI, - ACTIONS(2704), 1, + ACTIONS(2413), 1, + sym_identifier, + STATE(1329), 1, + sym_dotted_name, + STATE(1428), 1, + sym_aliased_import, + ACTIONS(2663), 2, sym__newline, - STATE(129), 1, - sym__semicolon, - STATE(1300), 1, - aux_sym__simple_statements_repeat1, - [65588] = 5, + anon_sym_SEMI, + [66178] = 6, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2669), 1, + anon_sym_RBRACE, + ACTIONS(2671), 1, + anon_sym_LBRACE2, + ACTIONS(2674), 1, + aux_sym_format_specifier_token1, + STATE(1305), 1, + aux_sym_format_specifier_repeat1, + STATE(1499), 1, + sym_interpolation, + [66197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(565), 1, - sym__newline, - ACTIONS(2706), 1, - anon_sym_SEMI, - STATE(131), 1, - sym__semicolon, - STATE(1316), 1, - aux_sym__simple_statements_repeat1, - [65604] = 5, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2677), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym_dotted_name, + STATE(1327), 1, + sym_aliased_import, + STATE(1565), 1, + sym__import_list, + [66216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 1, - anon_sym_SEMI, - ACTIONS(2710), 1, - sym__newline, - STATE(127), 1, - sym__semicolon, - STATE(1305), 1, - aux_sym__simple_statements_repeat1, - [65620] = 4, + ACTIONS(2603), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [66227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(2681), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2712), 2, + STATE(1311), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2679), 3, anon_sym_RPAREN, - anon_sym_COLON, - [65634] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_case, - STATE(612), 1, - sym_cases, - STATE(451), 2, - sym_case_block, - aux_sym_cases_repeat1, - [65648] = 4, + ACTIONS(2683), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2679), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_case, - STATE(512), 1, - sym_cases, - STATE(451), 2, - sym_case_block, - aux_sym_cases_repeat1, - [65662] = 5, + ACTIONS(2685), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2679), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, - sym__newline, - ACTIONS(2719), 1, - anon_sym_SEMI, - STATE(132), 1, - sym__semicolon, - STATE(1316), 1, - aux_sym__simple_statements_repeat1, - [65678] = 5, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2687), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2692), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2180), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [66298] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, anon_sym_and, - ACTIONS(2182), 1, + ACTIONS(2286), 1, anon_sym_or, - ACTIONS(2721), 1, - anon_sym_else, - [65694] = 5, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2694), 2, + sym__newline, + anon_sym_SEMI, + [66315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2618), 1, anon_sym_LPAREN, - STATE(1538), 1, + ACTIONS(2622), 1, + anon_sym_LBRACK, + ACTIONS(2696), 1, + anon_sym_COLON, + STATE(1491), 1, sym_type_parameters, - STATE(1539), 1, - sym_parameters, - [65710] = 5, - ACTIONS(3), 1, + STATE(1626), 1, + sym_argument_list, + [66334] = 6, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2622), 1, - anon_sym_COLON2, - ACTIONS(2725), 1, + ACTIONS(2628), 1, + anon_sym_LBRACE2, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(2727), 1, - sym_type_conversion, - STATE(1733), 1, - sym_format_specifier, - [65726] = 5, + ACTIONS(2700), 1, + aux_sym_format_specifier_token1, + STATE(1305), 1, + aux_sym_format_specifier_repeat1, + STATE(1499), 1, + sym_interpolation, + [66353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2284), 1, anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2451), 2, + sym__newline, + anon_sym_SEMI, + [66370] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2729), 1, - anon_sym_COLON, - [65742] = 4, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2702), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [66387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2704), 2, anon_sym_COMMA, - STATE(1297), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2731), 2, + anon_sym_RBRACK, + [66404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2706), 2, sym__newline, anon_sym_SEMI, - [65756] = 4, + [66421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2708), 2, anon_sym_COMMA, - STATE(1330), 1, - aux_sym__patterns_repeat1, - ACTIONS(2733), 2, - anon_sym_RPAREN, anon_sym_RBRACK, - [65770] = 5, + [66438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2737), 1, - anon_sym_COLON, - [65786] = 5, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2710), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_SEMI, + ACTIONS(2715), 1, + sym__newline, + STATE(133), 1, + sym__semicolon, + STATE(1322), 1, + aux_sym__simple_statements_repeat1, + [66471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + STATE(1404), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2719), 2, + sym__newline, + anon_sym_SEMI, + [66485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_case, + STATE(593), 1, + sym_cases, + STATE(461), 2, + sym_case_block, + aux_sym_cases_repeat1, + [66499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2739), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2723), 1, anon_sym_COLON, - [65802] = 4, + [66515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(2081), 1, - anon_sym_COLON, - STATE(675), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [65816] = 4, + ACTIONS(2284), 1, + anon_sym_and, + ACTIONS(2286), 1, + anon_sym_or, + ACTIONS(2299), 1, + anon_sym_if, + ACTIONS(2725), 1, + sym__newline, + [66531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym__template_string_start, - ACTIONS(2081), 1, - anon_sym_COLON, - STATE(676), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - [65830] = 5, + ACTIONS(2642), 1, + anon_sym_COMMA, + STATE(1335), 1, + aux_sym__import_list_repeat1, + ACTIONS(2646), 2, + sym__newline, + anon_sym_SEMI, + [66545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_SEMI, - ACTIONS(2744), 1, + ACTIONS(567), 1, sym__newline, - STATE(133), 1, + ACTIONS(2727), 1, + anon_sym_SEMI, + STATE(128), 1, sym__semicolon, - STATE(1316), 1, + STATE(1322), 1, aux_sym__simple_statements_repeat1, - [65846] = 2, + [66561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 4, + ACTIONS(2644), 1, + anon_sym_as, + ACTIONS(2729), 3, sym__newline, - anon_sym_from, anon_sym_COMMA, anon_sym_SEMI, - [65856] = 5, + [66573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, + ACTIONS(2638), 1, anon_sym_COLON2, - ACTIONS(2746), 1, + ACTIONS(2731), 1, anon_sym_RBRACE, - ACTIONS(2748), 1, + ACTIONS(2733), 1, sym_type_conversion, - STATE(1624), 1, + STATE(1646), 1, sym_format_specifier, - [65872] = 5, + [66589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, - anon_sym_RPAREN, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_as, - STATE(1409), 1, - aux_sym__import_list_repeat1, - [65888] = 4, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2735), 1, + anon_sym_COLON, + [66605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(2737), 1, anon_sym_COMMA, - STATE(1328), 1, - aux_sym__import_list_repeat1, - ACTIONS(2756), 2, + STATE(1332), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2740), 2, sym__newline, anon_sym_SEMI, - [65902] = 4, + [66619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2744), 1, + anon_sym_EQ, + ACTIONS(2742), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1321), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2761), 2, + anon_sym_COLON, + [66631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_case, + STATE(545), 1, + sym_cases, + STATE(440), 2, + sym_case_block, + aux_sym_cases_repeat1, + [66645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2748), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym__import_list_repeat1, + ACTIONS(2750), 2, sym__newline, anon_sym_SEMI, - [65916] = 4, + [66659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2752), 1, anon_sym_COMMA, - STATE(1328), 1, + STATE(1339), 1, aux_sym__import_list_repeat1, - ACTIONS(2756), 2, + ACTIONS(2750), 2, sym__newline, anon_sym_SEMI, - [65930] = 4, + [66673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_DOT, - STATE(1323), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2765), 2, - anon_sym_import, + ACTIONS(2580), 1, sym_identifier, - [65944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_COLON, - ACTIONS(2774), 1, - anon_sym_EQ, - ACTIONS(2770), 2, + ACTIONS(2663), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [65958] = 3, + STATE(1438), 1, + sym_dotted_name, + STATE(1600), 1, + sym_aliased_import, + [66689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 1, - anon_sym_EQ, - ACTIONS(2776), 3, + ACTIONS(2580), 1, + sym_identifier, + ACTIONS(2663), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [65970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 1, - anon_sym_as, - ACTIONS(2780), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_SEMI, - [65982] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_COLON, - [65998] = 4, + STATE(1438), 1, + sym_dotted_name, + STATE(1600), 1, + sym_aliased_import, + [66705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2754), 1, anon_sym_COMMA, - STATE(1328), 1, + STATE(1339), 1, aux_sym__import_list_repeat1, - ACTIONS(2787), 2, + ACTIONS(2757), 2, sym__newline, anon_sym_SEMI, - [66012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_COMMA, - STATE(1329), 1, - aux_sym_exception_list_repeat1, - ACTIONS(2792), 2, - anon_sym_as, - anon_sym_COLON, - [66026] = 4, + [66719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, - anon_sym_COMMA, - STATE(994), 1, - aux_sym__patterns_repeat1, - ACTIONS(2794), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [66040] = 5, + ACTIONS(2746), 1, + anon_sym_case, + STATE(546), 1, + sym_cases, + STATE(440), 2, + sym_case_block, + aux_sym_cases_repeat1, + [66733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2580), 1, sym_identifier, - STATE(1319), 1, + STATE(1362), 1, sym_dotted_name, - STATE(1487), 1, + STATE(1467), 1, sym_aliased_import, - STATE(1713), 1, + STATE(1670), 1, sym__import_list, - [66056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_SEMI, - ACTIONS(2800), 1, - sym__newline, - STATE(128), 1, - sym__semicolon, - STATE(1335), 1, - aux_sym__simple_statements_repeat1, - [66072] = 5, + [66749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2580), 1, sym_identifier, - STATE(1319), 1, + STATE(1362), 1, sym_dotted_name, - STATE(1487), 1, + STATE(1467), 1, sym_aliased_import, - STATE(1717), 1, + STATE(1671), 1, sym__import_list, - [66088] = 5, + [66765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2761), 1, + anon_sym_DOT, + STATE(1352), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2759), 2, + anon_sym_import, sym_identifier, - ACTIONS(2684), 1, + [66779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 4, anon_sym_RPAREN, - STATE(1473), 1, - sym_dotted_name, - STATE(1553), 1, - sym_aliased_import, - [66104] = 5, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, + ACTIONS(2765), 1, + anon_sym_SEMI, + ACTIONS(2767), 1, sym__newline, - ACTIONS(2802), 1, + STATE(129), 1, + sym__semicolon, + STATE(1351), 1, + aux_sym__simple_statements_repeat1, + [66805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 1, anon_sym_SEMI, - STATE(130), 1, + ACTIONS(2771), 1, + sym__newline, + STATE(127), 1, sym__semicolon, - STATE(1316), 1, + STATE(1399), 1, aux_sym__simple_statements_repeat1, - [66120] = 5, + [66821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2804), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2773), 1, anon_sym_else, - [66136] = 5, + [66837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 1, + anon_sym_COMMA, + STATE(1348), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2778), 2, + anon_sym_as, + anon_sym_COLON, + [66851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2806), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2782), 1, anon_sym_COLON, - [66152] = 4, + [66877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_COMMA, - STATE(1363), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2810), 2, + ACTIONS(565), 1, sym__newline, + ACTIONS(2784), 1, anon_sym_SEMI, - [66166] = 5, + STATE(131), 1, + sym__semicolon, + STATE(1322), 1, + aux_sym__simple_statements_repeat1, + [66893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 1, + anon_sym_DOT, + STATE(1352), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2786), 2, + anon_sym_import, + sym_identifier, + [66907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2812), 1, - anon_sym_COLON, - [66182] = 4, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2791), 1, + anon_sym_else, + [66923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(2411), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1218), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1888), 2, - anon_sym_if, - anon_sym_COLON, - [66196] = 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [66933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 4, - anon_sym_RPAREN, + ACTIONS(2795), 1, anon_sym_COMMA, + STATE(1360), 1, + aux_sym__patterns_repeat1, + ACTIONS(2793), 2, + anon_sym_RPAREN, anon_sym_RBRACK, + [66947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(2797), 1, anon_sym_RBRACE, - [66206] = 4, + ACTIONS(2799), 1, + sym_type_conversion, + STATE(1741), 1, + sym_format_specifier, + [66963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2413), 1, + sym_identifier, + STATE(1290), 1, + sym_dotted_name, + STATE(1327), 1, + sym_aliased_import, + STATE(1552), 1, + sym__import_list, + [66979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2489), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1329), 1, - aux_sym_exception_list_repeat1, - ACTIONS(2818), 2, - anon_sym_as, anon_sym_COLON, - [66220] = 5, + anon_sym_EQ, + [66989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, + ACTIONS(2182), 1, anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2801), 1, + anon_sym_COLON, + [67005] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 1, + anon_sym_COMMA, + STATE(1000), 1, + aux_sym__patterns_repeat1, + ACTIONS(2803), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [67019] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2820), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2807), 1, anon_sym_else, - [66236] = 2, + [67035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 4, + ACTIONS(2646), 1, anon_sym_RPAREN, + ACTIONS(2809), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [66246] = 5, + ACTIONS(2811), 1, + anon_sym_as, + STATE(1415), 1, + aux_sym__import_list_repeat1, + [67051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2822), 1, - anon_sym_else, - [66262] = 2, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2813), 1, + anon_sym_COLON, + [67067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [66272] = 5, + ACTIONS(2397), 1, + anon_sym_COMMA, + STATE(1348), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2815), 2, + anon_sym_as, + anon_sym_COLON, + [67081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - sym_identifier, - STATE(1319), 1, - sym_dotted_name, - STATE(1487), 1, - sym_aliased_import, - STATE(1640), 1, - sym__import_list, - [66288] = 2, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2817), 1, + anon_sym_else, + [67097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 4, - anon_sym_RPAREN, + ACTIONS(2819), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [66298] = 5, + STATE(1394), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2821), 2, + sym__newline, + anon_sym_SEMI, + [67111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2826), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2823), 1, anon_sym_else, - [66314] = 4, + [67127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2825), 1, anon_sym_COMMA, - STATE(1363), 1, + STATE(1368), 1, aux_sym_print_statement_repeat1, - ACTIONS(2830), 2, + ACTIONS(2828), 2, sym__newline, anon_sym_SEMI, - [66328] = 5, + [67141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(2112), 1, + anon_sym_COLON, + STATE(690), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [67155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2832), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2830), 1, anon_sym_COLON, - [66344] = 5, + [67171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2834), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2832), 1, anon_sym_COLON, - [66360] = 4, + [67187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2834), 1, anon_sym_COMMA, - STATE(1298), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2836), 2, + STATE(1372), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2549), 2, sym__newline, anon_sym_SEMI, - [66374] = 4, + [67201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, + ACTIONS(317), 1, + sym__template_string_start, + ACTIONS(2112), 1, + anon_sym_COLON, + STATE(693), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + [67215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 1, + anon_sym_EQ, + STATE(1562), 1, + sym__type_param_default, + ACTIONS(2837), 2, anon_sym_COMMA, - STATE(1365), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2838), 2, - sym__newline, - anon_sym_SEMI, - [66388] = 5, + anon_sym_RBRACK, + [67229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_case, + STATE(558), 1, + sym_cases, + STATE(461), 2, + sym_case_block, + aux_sym_cases_repeat1, + [67243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2840), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2839), 1, anon_sym_COLON, - [66404] = 5, + [67259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2842), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2841), 1, anon_sym_COLON, - [66420] = 5, + [67275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2844), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2843), 1, anon_sym_COLON, - [66436] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2608), 1, - anon_sym_RPAREN, - STATE(1473), 1, - sym_dotted_name, - STATE(1553), 1, - sym_aliased_import, - [66452] = 5, + [67291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_type_parameters, - STATE(1587), 1, - sym_parameters, - [66468] = 4, + ACTIONS(2547), 1, + anon_sym_EQ, + STATE(1563), 1, + sym__type_param_default, + ACTIONS(2845), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [67305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_COMMA, - STATE(1365), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2846), 2, + STATE(1368), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2849), 2, sym__newline, anon_sym_SEMI, - [66482] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - sym_identifier, - STATE(1281), 1, - sym_dotted_name, - STATE(1372), 1, - sym_aliased_import, - STATE(1577), 1, - sym__import_list, - [66498] = 5, + [67319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2580), 1, sym_identifier, - STATE(1281), 1, + STATE(1362), 1, sym_dotted_name, - STATE(1372), 1, + STATE(1467), 1, sym_aliased_import, - STATE(1513), 1, + STATE(1625), 1, sym__import_list, - [66514] = 4, + [67335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - STATE(1363), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2851), 2, - sym__newline, - anon_sym_SEMI, - [66528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, + STATE(1280), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(1902), 2, anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, - ACTIONS(2182), 1, - anon_sym_or, - ACTIONS(2853), 1, anon_sym_COLON, - [66544] = 4, + [67349] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, + anon_sym_COLON, + ACTIONS(2857), 1, + anon_sym_EQ, + ACTIONS(2853), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1365), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2556), 2, - sym__newline, - anon_sym_SEMI, - [66558] = 5, + [67363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_and, - ACTIONS(2305), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_if, - ACTIONS(2858), 1, - sym__newline, - [66574] = 4, + ACTIONS(2580), 1, + sym_identifier, + ACTIONS(2665), 1, + anon_sym_RPAREN, + STATE(1438), 1, + sym_dotted_name, + STATE(1600), 1, + sym_aliased_import, + [67379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_case, - STATE(574), 1, - sym_cases, - STATE(437), 2, - sym_case_block, - aux_sym_cases_repeat1, - [66588] = 4, + ACTIONS(2413), 1, + sym_identifier, + STATE(1290), 1, + sym_dotted_name, + STATE(1327), 1, + sym_aliased_import, + STATE(1596), 1, + sym__import_list, + [67395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_case, - STATE(578), 1, - sym_cases, - STATE(437), 2, - sym_case_block, - aux_sym_cases_repeat1, - [66602] = 5, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2859), 1, + anon_sym_COLON, + [67411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_if, - ACTIONS(2180), 1, - anon_sym_and, ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, anon_sym_or, - ACTIONS(2862), 1, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2861), 1, anon_sym_else, - [66618] = 4, + [67427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2819), 1, anon_sym_COMMA, - STATE(1338), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2866), 2, + STATE(1332), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2863), 2, sym__newline, anon_sym_SEMI, - [66632] = 4, + [67441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2547), 1, anon_sym_EQ, - STATE(1589), 1, + STATE(1575), 1, sym__type_param_default, - ACTIONS(2868), 2, + ACTIONS(2865), 2, anon_sym_COMMA, anon_sym_RBRACK, - [66646] = 4, + [67455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2485), 1, anon_sym_COMMA, - STATE(1320), 1, - aux_sym__import_list_repeat1, - ACTIONS(2658), 2, + STATE(1372), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2867), 2, sym__newline, anon_sym_SEMI, - [66660] = 4, + [67469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - anon_sym_EQ, - STATE(1527), 1, - sym__type_param_default, - ACTIONS(2870), 2, + ACTIONS(2869), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [67479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [66674] = 4, + STATE(1388), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2871), 2, + sym__newline, + anon_sym_SEMI, + [67493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_DOT, - STATE(1323), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2872), 2, - anon_sym_import, - sym_identifier, - [66688] = 5, + ACTIONS(2311), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [67503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, + anon_sym_COMMA, + STATE(1332), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2873), 2, + sym__newline, + anon_sym_SEMI, + [67517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(2182), 1, + anon_sym_and, + ACTIONS(2184), 1, + anon_sym_or, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2875), 1, + anon_sym_COLON, + [67533] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2877), 1, anon_sym_LPAREN, - STATE(1543), 1, - sym_parameters, - STATE(1582), 1, + STATE(1574), 1, sym_type_parameters, - [66704] = 5, + STATE(1612), 1, + sym_parameters, + [67549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(2622), 1, anon_sym_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2877), 1, anon_sym_LPAREN, - STATE(1545), 1, + STATE(1538), 1, sym_parameters, - STATE(1583), 1, + STATE(1597), 1, sym_type_parameters, - [66720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_EQ, - STATE(1591), 1, - sym__type_param_default, - ACTIONS(2876), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [66734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [66744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [66757] = 2, + [67565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 3, + ACTIONS(2622), 1, + anon_sym_LBRACK, + ACTIONS(2877), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [66766] = 2, + STATE(1541), 1, + sym_parameters, + STATE(1599), 1, + sym_type_parameters, + [67581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 3, + ACTIONS(561), 1, sym__newline, - anon_sym_COMMA, + ACTIONS(2879), 1, anon_sym_SEMI, - [66775] = 4, + STATE(132), 1, + sym__semicolon, + STATE(1322), 1, + aux_sym__simple_statements_repeat1, + [67597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2883), 1, anon_sym_COMMA, - ACTIONS(2889), 1, - anon_sym_RBRACK, - STATE(1382), 1, - aux_sym_type_parameters_repeat1, - [66788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 3, + STATE(1400), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2881), 2, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, - [66797] = 4, + [67611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, - anon_sym_RPAREN, - ACTIONS(2170), 1, + ACTIONS(2485), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_argument_list_repeat1, - [66810] = 4, + STATE(1372), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2886), 2, + sym__newline, + anon_sym_SEMI, + [67625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2893), 1, - anon_sym_RPAREN, - STATE(1286), 1, - aux_sym__collection_elements_repeat1, - [66823] = 4, + ACTIONS(2888), 1, + anon_sym_SEMI, + ACTIONS(2890), 1, + sym__newline, + STATE(130), 1, + sym__semicolon, + STATE(1328), 1, + aux_sym__simple_statements_repeat1, + [67641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, - anon_sym_COLON, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1386), 1, - aux_sym__parameters_repeat1, - [66836] = 4, + ACTIONS(2622), 1, + anon_sym_LBRACK, + ACTIONS(2877), 1, + anon_sym_LPAREN, + STATE(1548), 1, + sym_parameters, + STATE(1572), 1, + sym_type_parameters, + [67657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_RPAREN, - ACTIONS(2218), 1, + ACTIONS(2892), 1, anon_sym_COMMA, - STATE(1434), 1, - aux_sym_argument_list_repeat1, - [66849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1526), 3, + STATE(1368), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2894), 2, sym__newline, - anon_sym_in, anon_sym_SEMI, - [66858] = 2, + [67671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 3, - anon_sym_RPAREN, + ACTIONS(2031), 1, anon_sym_COMMA, - anon_sym_COLON, - [66867] = 4, + ACTIONS(2896), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [67684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(1431), 1, - aux_sym__collection_elements_repeat1, - [66880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 3, - sym__newline, anon_sym_COMMA, - anon_sym_SEMI, - [66889] = 3, + ACTIONS(2900), 1, + anon_sym_COLON, + STATE(1481), 1, + aux_sym__parameters_repeat1, + [67697] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2902), 1, - anon_sym_EQ, - ACTIONS(2904), 2, - sym__newline, - anon_sym_SEMI, - [66900] = 4, + anon_sym_if, + ACTIONS(2904), 1, + anon_sym_COLON, + STATE(1661), 1, + sym_guard, + [67710] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2906), 1, - anon_sym_RPAREN, - ACTIONS(2908), 1, anon_sym_COMMA, - STATE(1438), 1, - aux_sym_argument_list_repeat1, - [66913] = 4, + ACTIONS(2908), 2, + anon_sym_if, + anon_sym_COLON, + [67721] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2910), 1, @@ -79425,3833 +80129,3895 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2912), 1, anon_sym_RBRACK, STATE(1418), 1, - aux_sym_index_expression_list_repeat1, - [66926] = 4, + aux_sym_type_parameters_repeat1, + [67734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2214), 1, + ACTIONS(2853), 3, anon_sym_RPAREN, - STATE(1398), 1, - aux_sym__collection_elements_repeat1, - [66939] = 4, + anon_sym_COMMA, + anon_sym_COLON, + [67743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, - anon_sym_RPAREN, ACTIONS(2914), 1, - anon_sym_COMMA, - STATE(1218), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [66952] = 4, + anon_sym_in, + ACTIONS(2916), 2, + sym__newline, + anon_sym_SEMI, + [67754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_RPAREN, ACTIONS(2918), 1, - anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [66965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, anon_sym_RPAREN, ACTIONS(2920), 1, anon_sym_COMMA, - STATE(1287), 1, - aux_sym__collection_elements_repeat1, - [66978] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [67767] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2922), 1, anon_sym_RPAREN, ACTIONS(2924), 1, anon_sym_COMMA, - STATE(1460), 1, + STATE(1430), 1, aux_sym_argument_list_repeat1, - [66991] = 4, + [67780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, + ACTIONS(2750), 1, anon_sym_RPAREN, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_COLON2, - ACTIONS(2725), 1, - anon_sym_RBRACE, - STATE(1733), 1, - sym_format_specifier, - [67017] = 4, + STATE(1440), 1, + aux_sym__import_list_repeat1, + [67793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 1, + ACTIONS(2750), 1, anon_sym_RPAREN, - ACTIONS(2932), 1, + ACTIONS(2928), 1, anon_sym_COMMA, - STATE(1399), 1, - aux_sym_argument_list_repeat1, - [67030] = 4, + STATE(1440), 1, + aux_sym__import_list_repeat1, + [67806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, - anon_sym_RBRACK, - ACTIONS(2934), 1, - anon_sym_COMMA, - STATE(1218), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [67043] = 4, + ACTIONS(2622), 1, + anon_sym_LBRACK, + ACTIONS(2930), 1, + anon_sym_EQ, + STATE(1738), 1, + sym_type_parameters, + [67819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - anon_sym_RPAREN, - STATE(1398), 1, - aux_sym__collection_elements_repeat1, - [67056] = 4, + ACTIONS(2932), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [67828] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2910), 1, anon_sym_COMMA, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_RBRACK, - STATE(1418), 1, - aux_sym_index_expression_list_repeat1, - [67069] = 4, + STATE(1511), 1, + aux_sym_type_parameters_repeat1, + [67841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(2936), 1, + sym_identifier, + ACTIONS(2938), 1, anon_sym_RPAREN, + STATE(1592), 1, + sym_match_keyword_pattern, + [67854] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2938), 1, + anon_sym_RPAREN, + ACTIONS(2940), 1, anon_sym_COMMA, - STATE(1475), 1, - aux_sym__import_list_repeat1, - [67082] = 4, + STATE(1444), 1, + aux_sym_match_class_pattern_repeat2, + [67867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2938), 1, + anon_sym_RPAREN, + ACTIONS(2940), 1, anon_sym_COMMA, - ACTIONS(2445), 1, - anon_sym_RBRACE, - STATE(1412), 1, - aux_sym_dictionary_repeat1, - [67095] = 4, + STATE(1429), 1, + aux_sym_match_class_pattern_repeat2, + [67880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - ACTIONS(2087), 1, + ACTIONS(1340), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(1033), 1, - aux_sym_match_value_pattern_repeat1, - [67108] = 4, + [67889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_RPAREN, - ACTIONS(2940), 1, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(2942), 1, anon_sym_COMMA, - STATE(1475), 1, - aux_sym__import_list_repeat1, - [67121] = 4, + STATE(1477), 1, + aux_sym_match_mapping_pattern_repeat1, + [67902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2942), 1, + ACTIONS(1916), 1, + anon_sym_RPAREN, + ACTIONS(2944), 1, anon_sym_COMMA, - STATE(1386), 1, - aux_sym__parameters_repeat1, - [67134] = 4, + STATE(1420), 1, + aux_sym_match_class_pattern_repeat2, + [67915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(2740), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2944), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [67147] = 4, + anon_sym_SEMI, + [67924] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2936), 1, + sym_identifier, ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(2948), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [67160] = 4, + anon_sym_RPAREN, + STATE(1592), 1, + sym_match_keyword_pattern, + [67937] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2948), 1, + anon_sym_RPAREN, ACTIONS(2950), 1, anon_sym_COMMA, - ACTIONS(2952), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [67173] = 3, - ACTIONS(2077), 1, + STATE(1427), 1, + aux_sym_match_class_pattern_repeat1, + [67950] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 1, - anon_sym_RBRACE, - ACTIONS(2575), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [67184] = 4, + ACTIONS(2729), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [67959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2946), 1, anon_sym_RPAREN, - ACTIONS(2194), 1, + ACTIONS(2953), 1, anon_sym_COMMA, - STATE(1420), 1, - aux_sym_argument_list_repeat1, - [67197] = 4, + STATE(1444), 1, + aux_sym_match_class_pattern_repeat2, + [67972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2955), 1, anon_sym_RPAREN, - ACTIONS(2956), 1, + ACTIONS(2957), 1, anon_sym_COMMA, - STATE(1422), 1, + STATE(1430), 1, aux_sym_argument_list_repeat1, - [67210] = 4, + [67985] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2608), 1, + anon_sym_RBRACE, + ACTIONS(2610), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [67996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2958), 1, - anon_sym_RBRACK, - STATE(1418), 1, - aux_sym_index_expression_list_repeat1, - [67223] = 4, + ACTIONS(2220), 1, + anon_sym_RPAREN, + STATE(1471), 1, + aux_sym__collection_elements_repeat1, + [68009] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2936), 1, + sym_identifier, ACTIONS(2960), 1, - anon_sym_COMMA, - ACTIONS(2962), 1, - anon_sym_RBRACK, - STATE(1456), 1, - aux_sym_index_expression_list_repeat1, - [67236] = 4, + anon_sym_RPAREN, + STATE(1592), 1, + sym_match_keyword_pattern, + [68022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 1, - sym_identifier, + ACTIONS(2962), 1, + anon_sym_RPAREN, ACTIONS(2964), 1, - anon_sym_import, - STATE(1697), 1, - sym_dotted_name, - [67249] = 4, + anon_sym_COMMA, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(2731), 1, + anon_sym_RBRACE, + STATE(1646), 1, + sym_format_specifier, + [68048] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2966), 1, + anon_sym_EQ, + ACTIONS(2968), 2, + sym__newline, + anon_sym_SEMI, + [68059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 3, anon_sym_RPAREN, - ACTIONS(2968), 1, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67262] = 4, + anon_sym_COLON, + [68068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 1, + ACTIONS(2811), 1, + anon_sym_as, + ACTIONS(2729), 2, anon_sym_RPAREN, - ACTIONS(2970), 1, anon_sym_COMMA, - STATE(1462), 1, - aux_sym_match_class_pattern_repeat2, - [67275] = 4, + [68079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(1916), 1, anon_sym_RPAREN, - ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67288] = 4, + ACTIONS(2936), 1, + sym_identifier, + STATE(1592), 1, + sym_match_keyword_pattern, + [68092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, - ACTIONS(2978), 1, + ACTIONS(2972), 1, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67301] = 4, + STATE(1440), 1, + aux_sym__import_list_repeat1, + [68105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + ACTIONS(2975), 1, + anon_sym_RPAREN, + ACTIONS(2977), 1, anon_sym_COMMA, - STATE(1506), 1, - aux_sym_match_mapping_pattern_repeat1, - [67314] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, - anon_sym_COLON2, - ACTIONS(2982), 1, - anon_sym_RBRACE, - STATE(1596), 1, - sym_format_specifier, - [67327] = 4, + ACTIONS(2979), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [68127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, + ACTIONS(2981), 1, anon_sym_COMMA, - ACTIONS(2483), 1, - anon_sym_RBRACE, - STATE(1498), 1, - aux_sym_dictionary_repeat1, - [67340] = 4, + ACTIONS(2984), 1, + anon_sym_RBRACK, + STATE(1443), 1, + aux_sym_index_expression_list_repeat1, + [68140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, - anon_sym_RPAREN, ACTIONS(2986), 1, + anon_sym_RPAREN, + ACTIONS(2988), 1, anon_sym_COMMA, - STATE(1427), 1, - aux_sym_match_class_pattern_repeat1, - [67353] = 4, + STATE(1444), 1, + aux_sym_match_class_pattern_repeat2, + [68153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, + ACTIONS(2900), 1, anon_sym_RPAREN, - ACTIONS(2989), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - STATE(1428), 1, + STATE(1483), 1, aux_sym__parameters_repeat1, - [67366] = 2, + [68166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(2337), 1, + anon_sym_from, + ACTIONS(2341), 2, sym__newline, - anon_sym_in, anon_sym_SEMI, - [67375] = 4, + [68177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(1398), 1, - aux_sym__collection_elements_repeat1, - [67388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, + ACTIONS(2129), 1, anon_sym_RPAREN, - ACTIONS(2992), 1, - anon_sym_COMMA, - STATE(1287), 1, + STATE(1471), 1, aux_sym__collection_elements_repeat1, - [67401] = 4, + [68190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, + ACTIONS(2993), 1, anon_sym_COMMA, - ACTIONS(2451), 1, + ACTIONS(2996), 1, anon_sym_RBRACE, - STATE(1436), 1, + STATE(1448), 1, aux_sym_dictionary_repeat1, - [67414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1906), 1, - anon_sym_RPAREN, - ACTIONS(2994), 1, - sym_identifier, - STATE(1551), 1, - sym_match_keyword_pattern, - [67427] = 4, + [68203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, - anon_sym_RPAREN, ACTIONS(2998), 1, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67440] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(3000), 1, - anon_sym_RPAREN, - ACTIONS(3002), 1, - anon_sym_COMMA, - STATE(1435), 1, - aux_sym_match_class_pattern_repeat2, - [67453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 1, - anon_sym_COMMA, - ACTIONS(3007), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1448), 1, aux_sym_dictionary_repeat1, - [67466] = 4, + [68216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3002), 1, anon_sym_COMMA, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_RBRACE, - STATE(1482), 1, + STATE(1448), 1, aux_sym_dictionary_repeat1, - [67479] = 4, + [68229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_RPAREN, - ACTIONS(3015), 1, - anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67492] = 4, + ACTIONS(2106), 1, + anon_sym_DOT, + ACTIONS(2170), 1, + anon_sym_COLON, + STATE(1039), 1, + aux_sym_match_value_pattern_repeat1, + [68242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(2228), 1, anon_sym_RPAREN, - ACTIONS(2206), 1, + ACTIONS(2230), 1, anon_sym_COMMA, - STATE(1445), 1, + STATE(1457), 1, aux_sym_argument_list_repeat1, - [67505] = 4, + [68255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(3006), 1, anon_sym_RPAREN, - ACTIONS(3019), 1, + ACTIONS(3008), 1, anon_sym_COMMA, - STATE(1447), 1, + STATE(1458), 1, aux_sym_argument_list_repeat1, - [67518] = 4, + [68268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_RPAREN, - ACTIONS(3023), 1, + ACTIONS(3010), 1, anon_sym_COMMA, + ACTIONS(3012), 1, + anon_sym_RBRACK, STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67531] = 4, + aux_sym_index_expression_list_repeat1, + [68281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - ACTIONS(3025), 1, - anon_sym_RBRACK, - STATE(1418), 1, - aux_sym_index_expression_list_repeat1, - [67544] = 2, + ACTIONS(3014), 1, + anon_sym_RPAREN, + STATE(1309), 1, + aux_sym__collection_elements_repeat1, + [68294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 3, + ACTIONS(3016), 1, anon_sym_RPAREN, + ACTIONS(3018), 1, anon_sym_COMMA, - anon_sym_COLON, - [67553] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(3020), 1, anon_sym_RPAREN, - ACTIONS(3029), 1, + ACTIONS(3022), 1, anon_sym_COMMA, - STATE(1490), 1, - aux_sym_match_class_pattern_repeat1, - [67566] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, + ACTIONS(3024), 1, anon_sym_RPAREN, - ACTIONS(3033), 1, + ACTIONS(3026), 1, anon_sym_COMMA, - STATE(1460), 1, + STATE(1430), 1, aux_sym_argument_list_repeat1, - [67579] = 3, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_RBRACE, - ACTIONS(3037), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [67590] = 4, + [68333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, + ACTIONS(3028), 1, anon_sym_RPAREN, - ACTIONS(3041), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - STATE(1460), 1, + STATE(1430), 1, aux_sym_argument_list_repeat1, - [67603] = 4, + [68346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, - anon_sym_RPAREN, - ACTIONS(3045), 1, + ACTIONS(3032), 1, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_argument_list_repeat1, - [67616] = 4, + ACTIONS(3034), 1, + anon_sym_RBRACK, + STATE(1443), 1, + aux_sym_index_expression_list_repeat1, + [68359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - anon_sym_RPAREN, - ACTIONS(3047), 1, + ACTIONS(2090), 1, anon_sym_COMMA, - STATE(1489), 1, - aux_sym_match_class_pattern_repeat2, - [67629] = 4, + ACTIONS(2180), 1, + anon_sym_RPAREN, + STATE(1471), 1, + aux_sym__collection_elements_repeat1, + [68372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, - anon_sym_COLON2, - ACTIONS(3049), 1, - anon_sym_RBRACE, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_import, STATE(1709), 1, - sym_format_specifier, - [67642] = 2, + sym_dotted_name, + [68385] = 3, + ACTIONS(2086), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_RBRACE, + ACTIONS(2560), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [68396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 3, - sym__newline, - anon_sym_EQ, - anon_sym_SEMI, - [67651] = 4, + ACTIONS(2090), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + anon_sym_RPAREN, + STATE(1471), 1, + aux_sym__collection_elements_repeat1, + [68409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2580), 1, sym_identifier, - STATE(1326), 1, + STATE(1438), 1, sym_dotted_name, - STATE(1381), 1, + STATE(1600), 1, sym_aliased_import, - [67664] = 4, + [68422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3038), 1, anon_sym_COMMA, - ACTIONS(3053), 1, - anon_sym_COLON, - STATE(1410), 1, - aux_sym__parameters_repeat1, - [67677] = 2, + ACTIONS(3040), 1, + anon_sym_RBRACE, + STATE(1448), 1, + aux_sym_dictionary_repeat1, + [68435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 3, + ACTIONS(2646), 1, anon_sym_RPAREN, + ACTIONS(2809), 1, anon_sym_COMMA, - anon_sym_COLON, - [67686] = 4, + STATE(1414), 1, + aux_sym__import_list_repeat1, + [68448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 1, + anon_sym_RPAREN, + ACTIONS(2234), 1, + anon_sym_COMMA, + STATE(1521), 1, + aux_sym_argument_list_repeat1, + [68461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1006), 1, + ACTIONS(3042), 1, anon_sym_RPAREN, - ACTIONS(3055), 1, + ACTIONS(3044), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_with_clause_repeat1, - [67699] = 4, + STATE(1475), 1, + aux_sym_argument_list_repeat1, + [68474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3060), 1, + ACTIONS(3046), 1, anon_sym_RBRACK, - STATE(1456), 1, + STATE(1460), 1, aux_sym_index_expression_list_repeat1, - [67712] = 4, + [68487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(2679), 1, + anon_sym_RPAREN, + ACTIONS(3048), 1, anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [67725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_from, - ACTIONS(2331), 2, - sym__newline, - anon_sym_SEMI, - [67736] = 4, + STATE(1311), 1, + aux_sym__collection_elements_repeat1, + [68500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(2994), 1, - sym_identifier, - STATE(1551), 1, - sym_match_keyword_pattern, - [67749] = 4, + ACTIONS(3052), 1, + anon_sym_COMMA, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3054), 1, anon_sym_RPAREN, - ACTIONS(3066), 1, + ACTIONS(3056), 1, anon_sym_COMMA, - STATE(1460), 1, + STATE(1430), 1, aux_sym_argument_list_repeat1, - [67762] = 4, + [68526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - sym_identifier, - ACTIONS(3069), 1, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, + anon_sym_COLON, + STATE(1400), 1, + aux_sym_with_clause_repeat1, + [68539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(1551), 1, - sym_match_keyword_pattern, - [67775] = 4, + ACTIONS(3064), 1, + anon_sym_COMMA, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(3066), 1, anon_sym_RPAREN, - ACTIONS(3071), 1, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(1435), 1, - aux_sym_match_class_pattern_repeat2, - [67788] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [68565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_COMMA, ACTIONS(3073), 1, - anon_sym_COLON, - STATE(1619), 1, - sym_argument_list, - [67801] = 3, - ACTIONS(2077), 1, - sym_comment, - ACTIONS(2577), 1, anon_sym_RBRACE, - ACTIONS(2579), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [67812] = 3, + STATE(1477), 1, + aux_sym_match_mapping_pattern_repeat1, + [68578] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3058), 1, + anon_sym_COMMA, ACTIONS(3075), 1, - anon_sym_in, - ACTIONS(3077), 2, - sym__newline, - anon_sym_SEMI, - [67823] = 4, + anon_sym_COLON, + STATE(1474), 1, + aux_sym_with_clause_repeat1, + [68591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_COMMA, ACTIONS(3079), 1, - anon_sym_EQ, - STATE(1665), 1, - sym_type_parameters, - [67836] = 4, + anon_sym_RBRACE, + STATE(1448), 1, + aux_sym_dictionary_repeat1, + [68604] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1910), 1, + anon_sym_RPAREN, ACTIONS(3081), 1, - anon_sym_if, - ACTIONS(3083), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [68617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, anon_sym_COLON, - STATE(1592), 1, - sym_guard, - [67849] = 4, + ACTIONS(3083), 1, + anon_sym_COMMA, + STATE(1487), 1, + aux_sym__parameters_repeat1, + [68630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(2194), 1, anon_sym_RPAREN, - ACTIONS(3071), 1, + ACTIONS(2196), 1, anon_sym_COMMA, - STATE(1474), 1, - aux_sym_match_class_pattern_repeat2, - [67862] = 4, + STATE(1473), 1, + aux_sym_argument_list_repeat1, + [68643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, - anon_sym_COMMA, + ACTIONS(2067), 1, + anon_sym_RPAREN, ACTIONS(3085), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [67875] = 4, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym__parameters_repeat1, + [68656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_LPAREN, ACTIONS(3087), 1, - anon_sym_COLON, - STATE(1712), 1, - sym_argument_list, - [67888] = 4, + anon_sym_RPAREN, + ACTIONS(3089), 1, + anon_sym_COMMA, + STATE(1513), 1, + aux_sym_with_clause_repeat1, + [68669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - sym_identifier, - ACTIONS(3089), 1, + ACTIONS(1546), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [68678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, anon_sym_RPAREN, - STATE(1551), 1, - sym_match_keyword_pattern, - [67901] = 4, + ACTIONS(2224), 1, + anon_sym_COMMA, + STATE(1413), 1, + aux_sym_argument_list_repeat1, + [68691] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2970), 1, + anon_sym_COLON, ACTIONS(3091), 1, anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RBRACK, - STATE(1403), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [67914] = 3, + STATE(1487), 1, + aux_sym__parameters_repeat1, + [68704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_as, - ACTIONS(2780), 2, + ACTIONS(3094), 1, anon_sym_RPAREN, + ACTIONS(3096), 1, anon_sym_COMMA, - [67925] = 4, + STATE(1500), 1, + aux_sym_match_class_pattern_repeat1, + [68717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3095), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - STATE(1435), 1, - aux_sym_match_class_pattern_repeat2, - [67938] = 4, + ACTIONS(3100), 1, + anon_sym_RBRACK, + STATE(1528), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [68730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(3102), 1, anon_sym_RPAREN, - ACTIONS(3097), 1, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1475), 1, - aux_sym__import_list_repeat1, - [67951] = 3, - ACTIONS(2077), 1, + STATE(1434), 1, + aux_sym_argument_list_repeat1, + [68743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, + anon_sym_LPAREN, + ACTIONS(3106), 1, + anon_sym_COLON, + STATE(1634), 1, + sym_argument_list, + [68756] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(3108), 1, anon_sym_RBRACE, - ACTIONS(2528), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [67962] = 4, + STATE(1621), 1, + sym_format_specifier, + [68769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(3094), 1, + anon_sym_RPAREN, + ACTIONS(3110), 1, anon_sym_COMMA, - ACTIONS(3102), 1, - anon_sym_COLON, - STATE(1488), 1, - aux_sym_with_clause_repeat1, - [67975] = 4, + STATE(1506), 1, + aux_sym_match_class_pattern_repeat2, + [68782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(2742), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3104), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [67988] = 4, + anon_sym_COLON, + [68791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2188), 1, - anon_sym_RPAREN, - STATE(1398), 1, - aux_sym__collection_elements_repeat1, - [68001] = 4, + ACTIONS(2902), 1, + anon_sym_if, + ACTIONS(3112), 1, + anon_sym_COLON, + STATE(1647), 1, + sym_guard, + [68804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - sym_identifier, - ACTIONS(3106), 1, + ACTIONS(2232), 1, anon_sym_RPAREN, - STATE(1551), 1, - sym_match_keyword_pattern, - [68014] = 2, + ACTIONS(2234), 1, + anon_sym_COMMA, + STATE(1523), 1, + aux_sym_argument_list_repeat1, + [68817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 3, + ACTIONS(3114), 1, anon_sym_RPAREN, + ACTIONS(3116), 1, anon_sym_COMMA, - anon_sym_COLON, - [68023] = 4, + STATE(1525), 1, + aux_sym_argument_list_repeat1, + [68830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3111), 1, + ACTIONS(3120), 1, anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [68036] = 4, - ACTIONS(3), 1, + STATE(1423), 1, + aux_sym_match_mapping_pattern_repeat1, + [68843] = 3, + ACTIONS(2086), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_COMMA, - ACTIONS(3115), 1, - anon_sym_RBRACK, - STATE(1499), 1, - aux_sym_type_parameters_repeat1, - [68049] = 4, + ACTIONS(3122), 1, + anon_sym_RBRACE, + ACTIONS(3124), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [68854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(1914), 1, anon_sym_RPAREN, - ACTIONS(3119), 1, + ACTIONS(3126), 1, anon_sym_COMMA, - STATE(1455), 1, - aux_sym_with_clause_repeat1, - [68062] = 4, + STATE(1427), 1, + aux_sym_match_class_pattern_repeat1, + [68867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3123), 1, - anon_sym_RBRACE, - STATE(1424), 1, - aux_sym_match_mapping_pattern_repeat1, - [68075] = 2, + ACTIONS(3128), 1, + anon_sym_RBRACK, + STATE(1460), 1, + aux_sym_index_expression_list_repeat1, + [68880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [68084] = 4, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(2797), 1, + anon_sym_RBRACE, + STATE(1741), 1, + sym_format_specifier, + [68893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, - anon_sym_RPAREN, - ACTIONS(2750), 1, - anon_sym_COMMA, - STATE(1406), 1, - aux_sym__import_list_repeat1, - [68097] = 4, + ACTIONS(2413), 1, + sym_identifier, + STATE(1329), 1, + sym_dotted_name, + STATE(1428), 1, + sym_aliased_import, + [68906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(2031), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_COLON, - STATE(1302), 1, - aux_sym_with_clause_repeat1, - [68110] = 4, + ACTIONS(3130), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [68919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, + ACTIONS(1914), 1, anon_sym_RPAREN, - ACTIONS(3129), 1, - anon_sym_COMMA, - STATE(1435), 1, - aux_sym_match_class_pattern_repeat2, - [68123] = 4, + ACTIONS(2936), 1, + sym_identifier, + STATE(1592), 1, + sym_match_keyword_pattern, + [68932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, + ACTIONS(1914), 1, anon_sym_RPAREN, - ACTIONS(3131), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - STATE(1427), 1, - aux_sym_match_class_pattern_repeat1, - [68136] = 2, + STATE(1444), 1, + aux_sym_match_class_pattern_repeat2, + [68945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 3, + ACTIONS(3134), 1, + anon_sym_COLON, + ACTIONS(2853), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [68145] = 3, - ACTIONS(2077), 1, + [68956] = 3, + ACTIONS(2086), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2562), 1, anon_sym_RBRACE, - ACTIONS(2516), 2, + ACTIONS(2564), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [68156] = 4, + [68967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - sym_identifier, - STATE(1473), 1, - sym_dotted_name, - STATE(1553), 1, - sym_aliased_import, - [68169] = 2, + ACTIONS(1550), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [68976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 3, - sym__newline, + ACTIONS(3136), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [68985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 1, anon_sym_COMMA, - anon_sym_SEMI, - [68178] = 2, + ACTIONS(3141), 1, + anon_sym_RBRACK, + STATE(1511), 1, + aux_sym_type_parameters_repeat1, + [68998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 3, + ACTIONS(3143), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [68187] = 4, + [69007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, - anon_sym_COLON2, - ACTIONS(2746), 1, - anon_sym_RBRACE, - STATE(1624), 1, - sym_format_specifier, - [68200] = 4, + ACTIONS(1018), 1, + anon_sym_RPAREN, + ACTIONS(3145), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_with_clause_repeat1, + [69020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(3147), 1, sym_identifier, - ACTIONS(3139), 1, + ACTIONS(3149), 1, sym_match_wildcard_pattern, - STATE(1259), 1, + STATE(1312), 1, sym_match_capture_pattern, - [68213] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [68226] = 4, + [69033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(2031), 1, anon_sym_COMMA, - ACTIONS(3145), 1, - anon_sym_RBRACK, - STATE(1382), 1, - aux_sym_type_parameters_repeat1, - [68239] = 3, + ACTIONS(3151), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [69046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2857), 1, anon_sym_EQ, - ACTIONS(2770), 2, + ACTIONS(2853), 2, anon_sym_COMMA, anon_sym_COLON, - [68250] = 4, - ACTIONS(3), 1, + [69057] = 3, + ACTIONS(2086), 1, sym_comment, - ACTIONS(3147), 1, - anon_sym_COMMA, - ACTIONS(3149), 1, + ACTIONS(2591), 1, anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [68263] = 4, + ACTIONS(2593), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [69068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_RPAREN, - ACTIONS(3151), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(1428), 1, - aux_sym__parameters_repeat1, - [68276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_if, ACTIONS(3153), 1, - anon_sym_COLON, - STATE(1706), 1, - sym_guard, - [68289] = 3, + anon_sym_RBRACK, + STATE(1460), 1, + aux_sym_index_expression_list_repeat1, + [69081] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2970), 1, + anon_sym_RPAREN, ACTIONS(3155), 1, anon_sym_COMMA, - ACTIONS(3157), 2, - anon_sym_if, + STATE(1519), 1, + aux_sym__parameters_repeat1, + [69094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, anon_sym_COLON, - [68300] = 4, + STATE(1663), 1, + sym_argument_list, + [69107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(3160), 1, + anon_sym_RPAREN, + ACTIONS(3162), 1, anon_sym_COMMA, - ACTIONS(2387), 1, - anon_sym_RBRACE, - STATE(1379), 1, - aux_sym_dictionary_repeat1, - [68313] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [69120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(2881), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_RBRACE, - STATE(1506), 1, - aux_sym_match_mapping_pattern_repeat1, - [68326] = 4, + anon_sym_COLON, + [69129] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3164), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(3166), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_dictionary_repeat1, - [68339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 1, anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [68352] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [69142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(3168), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_in, - STATE(1012), 1, - aux_sym__patterns_repeat1, - [68365] = 3, + anon_sym_COLON, + [69151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3172), 1, - anon_sym_COLON, - ACTIONS(2770), 2, + ACTIONS(3170), 1, anon_sym_RPAREN, + ACTIONS(3172), 1, anon_sym_COMMA, - [68376] = 4, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [69164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_RPAREN, ACTIONS(3174), 1, + anon_sym_RPAREN, + ACTIONS(3176), 1, anon_sym_COMMA, - STATE(1502), 1, - aux_sym__parameters_repeat1, - [68389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_parameters, - [68399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 2, - sym__newline, - anon_sym_SEMI, - [68407] = 3, + STATE(1430), 1, + aux_sym_argument_list_repeat1, + [69177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, - sym_identifier, - STATE(1551), 1, - sym_match_keyword_pattern, - [68417] = 2, + ACTIONS(2638), 1, + anon_sym_COLON2, + ACTIONS(3178), 1, + anon_sym_RBRACE, + STATE(1656), 1, + sym_format_specifier, + [69190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 2, - anon_sym_COMMA, + ACTIONS(1910), 1, anon_sym_RBRACK, - [68425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 2, - sym__newline, - anon_sym_SEMI, - [68433] = 2, + ACTIONS(3180), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [69203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 2, + ACTIONS(2489), 3, sym__newline, + anon_sym_EQ, anon_sym_SEMI, - [68441] = 3, + [69212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2031), 1, anon_sym_COMMA, - STATE(1247), 1, - aux_sym_expression_list_repeat1, - [68451] = 2, + ACTIONS(3182), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [69225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3184), 2, + ACTIONS(2031), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [68459] = 3, + ACTIONS(3184), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [69238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2031), 1, anon_sym_COMMA, - STATE(1278), 1, - aux_sym_expression_list_repeat1, - [68469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3186), 2, - sym__newline, - anon_sym_SEMI, - [68477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 2, - sym__newline, - anon_sym_SEMI, - [68485] = 2, + ACTIONS(3186), 1, + anon_sym_in, + STATE(1018), 1, + aux_sym__patterns_repeat1, + [69251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(1088), 2, anon_sym_except, anon_sym_finally, - [68493] = 2, + [69259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3188), 2, anon_sym_RPAREN, anon_sym_COMMA, - [68501] = 2, + [69267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3190), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [68509] = 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [69275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3192), 2, - sym__newline, - anon_sym_SEMI, - [68517] = 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [69283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [68525] = 2, + ACTIONS(3194), 1, + sym_identifier, + STATE(1609), 1, + sym_match_capture_pattern, + [69293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 2, - sym__newline, - anon_sym_SEMI, - [68533] = 3, + ACTIONS(3196), 1, + anon_sym_COLON, + ACTIONS(3198), 1, + anon_sym_DASH_GT, + [69303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(2710), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RBRACE, - [68543] = 2, + [69311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 2, - sym__newline, - anon_sym_SEMI, - [68551] = 3, + ACTIONS(3200), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [69319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3202), 1, anon_sym_COLON, ACTIONS(3204), 1, anon_sym_DASH_GT, - [68561] = 2, + [69329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 2, + ACTIONS(2979), 2, anon_sym_RPAREN, anon_sym_COMMA, - [68569] = 2, + [69337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 2, - sym__newline, - anon_sym_SEMI, - [68577] = 2, + ACTIONS(2106), 1, + anon_sym_DOT, + STATE(1451), 1, + aux_sym_match_value_pattern_repeat1, + [69347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 2, - sym__newline, - anon_sym_SEMI, - [68585] = 2, + ACTIONS(3206), 1, + anon_sym_COLON, + ACTIONS(3208), 1, + anon_sym_DASH_GT, + [69357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 2, + ACTIONS(2433), 2, sym__newline, anon_sym_SEMI, - [68593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [68601] = 2, + [69365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [68609] = 3, + ACTIONS(3210), 1, + anon_sym_COLON, + ACTIONS(3212), 1, + anon_sym_DASH_GT, + [69375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(1531), 1, - sym_parameters, - [68619] = 3, + ACTIONS(2465), 1, + anon_sym_as, + ACTIONS(2467), 1, + anon_sym_COLON, + [69385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3214), 1, anon_sym_COLON, - ACTIONS(3218), 1, + ACTIONS(3216), 1, anon_sym_DASH_GT, - [68629] = 3, + [69395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3218), 2, anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_RPAREN, - [68639] = 3, + anon_sym_RBRACE, + [69403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3222), 1, - anon_sym_COMMA, - STATE(1396), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [68649] = 2, + ACTIONS(3220), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [69411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 2, - anon_sym_except, - anon_sym_finally, - [68657] = 3, + ACTIONS(2469), 1, + anon_sym_as, + ACTIONS(2471), 1, + anon_sym_COLON, + [69421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 1, - anon_sym_COLON, - ACTIONS(3226), 1, - anon_sym_DASH_GT, - [68667] = 2, + ACTIONS(3222), 2, + sym__newline, + anon_sym_SEMI, + [69429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 2, - anon_sym_RPAREN, + ACTIONS(3120), 1, + anon_sym_RBRACE, + ACTIONS(3224), 1, anon_sym_COMMA, - [68675] = 3, + [69439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 1, - anon_sym_COLON, - ACTIONS(3230), 1, - anon_sym_DASH_GT, - [68685] = 3, + ACTIONS(2497), 2, + sym__newline, + anon_sym_SEMI, + [69447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 1, - anon_sym_COLON, - ACTIONS(3234), 1, - anon_sym_DASH_GT, - [68695] = 3, + ACTIONS(1989), 1, + anon_sym_RBRACE, + ACTIONS(3226), 1, + anon_sym_COMMA, + [69457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3238), 1, - anon_sym_DASH_GT, - [68705] = 3, + ACTIONS(3228), 1, + sym_integer, + ACTIONS(3230), 1, + sym_float, + [69467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, - anon_sym_as, - ACTIONS(2457), 1, - anon_sym_COLON, - [68715] = 2, + ACTIONS(3073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 2, + ACTIONS(2948), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [68723] = 3, + [69483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_as, - ACTIONS(2461), 1, - anon_sym_COLON, - [68733] = 2, + ACTIONS(3232), 2, + sym__newline, + anon_sym_SEMI, + [69491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [68741] = 2, + ACTIONS(3234), 1, + anon_sym_COLON, + ACTIONS(3236), 1, + anon_sym_DASH_GT, + [69501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 2, + ACTIONS(3238), 2, sym__newline, anon_sym_SEMI, - [68749] = 2, + [69509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 2, - anon_sym_RPAREN, + ACTIONS(3240), 2, anon_sym_COMMA, - [68757] = 2, + anon_sym_RBRACK, + [69517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 2, - anon_sym_RPAREN, + ACTIONS(3242), 2, anon_sym_COMMA, - [68765] = 3, + anon_sym_RBRACK, + [69525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2439), 1, anon_sym_as, - ACTIONS(2401), 1, - anon_sym_COLON, - [68775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3242), 1, + ACTIONS(2441), 1, anon_sym_COLON, - ACTIONS(3244), 1, - anon_sym_DASH_GT, - [68785] = 3, + [69535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 1, - sym_identifier, - STATE(1576), 1, - sym_match_capture_pattern, - [68795] = 3, + ACTIONS(3244), 2, + sym__newline, + anon_sym_SEMI, + [69543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - STATE(1408), 1, - aux_sym_match_value_pattern_repeat1, - [68805] = 2, + ACTIONS(2702), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [69551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 2, - sym__newline, - anon_sym_SEMI, - [68813] = 3, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_RBRACE, - ACTIONS(3250), 1, + ACTIONS(3248), 1, anon_sym_COMMA, - [68823] = 3, + ACTIONS(3250), 1, + anon_sym_RBRACE, + [69569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, - sym_integer, - ACTIONS(3254), 1, - sym_float, - [68833] = 3, + ACTIONS(2276), 2, + sym__newline, + anon_sym_SEMI, + [69577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, - anon_sym_as, - ACTIONS(2479), 1, - anon_sym_COLON, - [68843] = 2, + ACTIONS(3252), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [69585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 2, + ACTIONS(3254), 2, sym__newline, anon_sym_SEMI, - [68851] = 2, + [69593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 2, - anon_sym_except, - anon_sym_finally, - [68859] = 3, + ACTIONS(2877), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_parameters, + [69603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 1, - sym_integer, - ACTIONS(3260), 1, - sym_float, - [68869] = 2, + ACTIONS(2393), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_expression_list_repeat1, + [69613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 2, - sym__newline, - anon_sym_SEMI, - [68877] = 2, + ACTIONS(2877), 1, + anon_sym_LPAREN, + STATE(1560), 1, + sym_parameters, + [69623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 2, - anon_sym_RPAREN, + ACTIONS(3256), 2, anon_sym_COMMA, - [68885] = 3, + anon_sym_RBRACK, + [69631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, - anon_sym_COMMA, - STATE(1219), 1, - aux_sym_expression_list_repeat1, - [68895] = 2, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3260), 1, + anon_sym_DASH_GT, + [69641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3262), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [68903] = 2, + anon_sym_RBRACK, + [69649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 2, + ACTIONS(2715), 2, sym__newline, anon_sym_SEMI, - [68911] = 2, + [69657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(3264), 2, sym__newline, anon_sym_SEMI, - [68919] = 2, + [69665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3266), 2, sym__newline, anon_sym_SEMI, - [68927] = 2, + [69673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3268), 2, sym__newline, anon_sym_SEMI, - [68935] = 2, + [69681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 2, - anon_sym_COMMA, - anon_sym_COLON, - [68943] = 2, + ACTIONS(1054), 2, + anon_sym_except, + anon_sym_finally, + [69689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 2, + ACTIONS(1022), 2, anon_sym_except, anon_sym_finally, - [68951] = 2, + [69697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3270), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68959] = 2, + sym__newline, + anon_sym_SEMI, + [69705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3272), 2, sym__newline, anon_sym_SEMI, - [68967] = 2, + [69713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3274), 2, sym__newline, anon_sym_SEMI, - [68975] = 3, + [69721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3276), 1, sym_integer, ACTIONS(3278), 1, sym_float, - [68985] = 2, + [69731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 2, + ACTIONS(2260), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [68993] = 2, + STATE(1272), 1, + aux_sym_expression_list_repeat1, + [69741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_except, - anon_sym_finally, - [69001] = 3, + ACTIONS(3280), 2, + sym__newline, + anon_sym_SEMI, + [69749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(1546), 1, - sym_parameters, - [69011] = 3, + ACTIONS(2339), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym_expression_list_repeat1, + [69759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_parameters, - [69021] = 3, + ACTIONS(2491), 2, + sym__newline, + anon_sym_SEMI, + [69767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_RBRACE, - ACTIONS(3282), 1, + ACTIONS(2986), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [69031] = 3, + [69775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 1, + ACTIONS(2936), 1, + sym_identifier, + STATE(1592), 1, + sym_match_keyword_pattern, + [69785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_as, + ACTIONS(2403), 1, + anon_sym_COLON, + [69795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 1, anon_sym_COMMA, - STATE(1340), 1, + STATE(1382), 1, aux_sym_open_sequence_match_pattern_repeat1, - [69041] = 2, + [69805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 2, + sym__newline, + anon_sym_SEMI, + [69813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2877), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_parameters, + [69823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_except, + anon_sym_finally, + [69831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2877), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_parameters, + [69841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 2, + ACTIONS(2729), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [69049] = 3, + [69849] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2906), 1, + anon_sym_COMMA, ACTIONS(3286), 1, - anon_sym_COLON, + anon_sym_RPAREN, + [69859] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(3288), 1, - anon_sym_DASH_GT, - [69059] = 2, + anon_sym_COMMA, + STATE(1480), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [69869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3290), 2, sym__newline, anon_sym_SEMI, - [69067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3292), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [69075] = 2, + [69877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [69083] = 2, + ACTIONS(3292), 1, + sym_integer, + ACTIONS(3294), 1, + sym_float, + [69887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3296), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [69091] = 2, + sym__newline, + anon_sym_SEMI, + [69895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 1, + ACTIONS(2853), 2, + anon_sym_COMMA, anon_sym_COLON, - [69098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 1, - anon_sym_RBRACE, - [69105] = 2, + [69903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_RBRACK, - [69112] = 2, + ACTIONS(1079), 2, + anon_sym_except, + anon_sym_finally, + [69911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_in, - [69119] = 2, + ACTIONS(3298), 2, + sym__newline, + anon_sym_SEMI, + [69919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 1, + ACTIONS(3300), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [69126] = 2, + [69927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 1, - sym_identifier, - [69133] = 2, + ACTIONS(3302), 2, + sym__newline, + anon_sym_SEMI, + [69935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, - sym_identifier, - [69140] = 2, + ACTIONS(3304), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [69943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3306), 1, anon_sym_COLON, - [69147] = 2, + ACTIONS(3308), 1, + anon_sym_DASH_GT, + [69953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3310), 1, anon_sym_COLON, - [69154] = 2, + [69960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 1, + anon_sym_RBRACK, + [69967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3312), 1, - anon_sym_RBRACE, - [69161] = 2, + anon_sym_RPAREN, + [69974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3314), 1, - anon_sym_COLON, - [69168] = 2, + sym_identifier, + [69981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3316), 1, - anon_sym_RBRACE, - [69175] = 2, + sym_identifier, + [69988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3318), 1, - sym_identifier, - [69182] = 2, + anon_sym_RPAREN, + [69995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3320), 1, - anon_sym_COLON, - [69189] = 2, + anon_sym_in, + [70002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3322), 1, - anon_sym_COLON, - [69196] = 2, + anon_sym_import, + [70009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3324), 1, - anon_sym_COLON, - [69203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2958), 1, - anon_sym_RBRACK, - [69210] = 2, + anon_sym_RBRACE, + [70016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3326), 1, anon_sym_COLON, - [69217] = 2, + [70023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3328), 1, - ts_builtin_sym_end, - [69224] = 2, + anon_sym_for, + [70030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3330), 1, - anon_sym_COLON, - [69231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - anon_sym_in, - [69238] = 2, + anon_sym_RBRACE, + [70037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, anon_sym_RPAREN, - [69245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_COLON, - [69252] = 2, + [70044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3334), 1, - sym_identifier, - [69259] = 2, + anon_sym_COLON, + [70051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3336), 1, anon_sym_RBRACE, - [69266] = 2, + [70058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3338), 1, + anon_sym_RPAREN, + [70065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, anon_sym_COLON, - [69273] = 2, + [70072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3340), 1, - anon_sym_RPAREN, - [69280] = 2, + anon_sym_COLON, + [70079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3342), 1, - anon_sym_COLON, - [69287] = 2, + sym_identifier, + [70086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3344), 1, anon_sym_COLON, - [69294] = 2, + [70093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_COLON, - [69301] = 2, + ACTIONS(2375), 1, + anon_sym_EQ, + [70100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3346), 1, anon_sym_COLON, - [69308] = 2, + [70107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3348), 1, - sym_identifier, - [69315] = 2, + anon_sym_COLON, + [70114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 1, - anon_sym_RBRACE, - [69322] = 2, + ACTIONS(2541), 1, + anon_sym_COLON, + [70121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3350), 1, - sym_identifier, - [69329] = 2, + anon_sym_COLON, + [70128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3352), 1, - anon_sym_RBRACK, - [69336] = 2, + anon_sym_import, + [70135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, anon_sym_COLON, - [69343] = 2, + [70142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3356), 1, - anon_sym_COLON, - [69350] = 2, + anon_sym_RPAREN, + [70149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3358), 1, - anon_sym_COLON, - [69357] = 2, + sym_identifier, + [70156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3360), 1, - anon_sym_RBRACE, - [69364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_EQ, - [69371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 1, anon_sym_COLON, - [69378] = 2, + [70163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3362), 1, anon_sym_COLON, - [69385] = 2, + [70170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3364), 1, anon_sym_COLON, - [69392] = 2, + [70177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, - sym_identifier, - [69399] = 2, + ACTIONS(2572), 1, + anon_sym_COLON, + [70184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 1, + ACTIONS(3108), 1, anon_sym_RBRACE, - [69406] = 2, + [70191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3366), 1, + anon_sym_COLON, + [70198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3368), 1, - sym_identifier, - [69413] = 2, + anon_sym_COLON, + [70205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3370), 1, - anon_sym_RBRACE, - [69420] = 2, + anon_sym_COLON, + [70212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3372), 1, - sym_identifier, - [69427] = 2, + anon_sym_LPAREN, + [70219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 1, + anon_sym_RBRACE, + [70226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, - anon_sym_RPAREN, - [69434] = 2, + anon_sym_COLON, + [70233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3376), 1, - anon_sym_in, - [69441] = 2, + sym_identifier, + [70240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3378), 1, - anon_sym_COLON, - [69448] = 2, + anon_sym_RPAREN, + [70247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3380), 1, - sym_identifier, - [69455] = 2, + anon_sym_RPAREN, + [70254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3382), 1, - anon_sym_COLON, - [69462] = 2, + anon_sym_RBRACE, + [70261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3384), 1, - anon_sym_COLON, - [69469] = 2, + anon_sym_RBRACK, + [70268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3386), 1, - anon_sym_for, - [69476] = 2, + anon_sym_RBRACK, + [70275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3388), 1, - anon_sym_COLON, - [69483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_in, - [69490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_COLON, - [69497] = 2, + sym_identifier, + [70282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_in, - [69504] = 2, + ACTIONS(3128), 1, + anon_sym_RBRACK, + [70289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3390), 1, anon_sym_COLON, - [69511] = 2, + [70296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3392), 1, - anon_sym_RPAREN, - [69518] = 2, + sym_identifier, + [70303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3394), 1, anon_sym_COLON, - [69525] = 2, + [70310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3396), 1, - anon_sym_COLON, - [69532] = 2, + anon_sym_RBRACE, + [70317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3398), 1, - anon_sym_RPAREN, - [69539] = 2, + anon_sym_RBRACE, + [70324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3400), 1, - anon_sym_in, - [69546] = 2, + anon_sym_RBRACE, + [70331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3402), 1, - anon_sym_RPAREN, - [69553] = 2, + anon_sym_COLON, + [70338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3404), 1, - anon_sym_COLON, - [69560] = 2, + sym_identifier, + [70345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3406), 1, anon_sym_RBRACK, - [69567] = 2, + [70352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3408), 1, - anon_sym_COLON, - [69574] = 2, + anon_sym_RPAREN, + [70359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3410), 1, - anon_sym_import, - [69581] = 2, + anon_sym_RPAREN, + [70366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3412), 1, - sym_identifier, - [69588] = 2, + anon_sym_in, + [70373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3414), 1, - sym_identifier, - [69595] = 2, + anon_sym_RPAREN, + [70380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + anon_sym_in, + [70387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3416), 1, - sym_identifier, - [69602] = 2, + anon_sym_RBRACK, + [70394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3418), 1, - anon_sym_EQ, - [69609] = 2, + anon_sym_RBRACE, + [70401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3420), 1, + ACTIONS(2797), 1, anon_sym_RBRACE, - [69616] = 2, + [70408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_RBRACE, - [69623] = 2, + ACTIONS(3186), 1, + anon_sym_in, + [70415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1104), 1, - anon_sym_def, - [69630] = 2, + ACTIONS(3420), 1, + sym_identifier, + [70422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3422), 1, + anon_sym_RBRACE, + [70429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3424), 1, - anon_sym_RPAREN, - [69637] = 2, + sym_identifier, + [70436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3426), 1, anon_sym_RPAREN, - [69644] = 2, + [70443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3428), 1, - sym_identifier, - [69651] = 2, + anon_sym_COLON, + [70450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3430), 1, - anon_sym_RBRACE, - [69658] = 2, + anon_sym_RPAREN, + [70457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3432), 1, - anon_sym_RPAREN, - [69665] = 2, + anon_sym_RBRACE, + [70464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3434), 1, - sym_identifier, - [69672] = 2, + anon_sym_RPAREN, + [70471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_RBRACK, - [69679] = 2, + ACTIONS(2601), 1, + anon_sym_COLON, + [70478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 1, - anon_sym_STAR, - [69686] = 2, + ACTIONS(3436), 1, + anon_sym_RBRACE, + [70485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3438), 1, - anon_sym_import, - [69693] = 2, + anon_sym_COLON, + [70492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3440), 1, - anon_sym_RBRACE, - [69700] = 2, + anon_sym_RBRACK, + [70499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3442), 1, - anon_sym_RPAREN, - [69707] = 2, + anon_sym_COLON, + [70506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3444), 1, - anon_sym_RPAREN, - [69714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, anon_sym_RBRACK, - [69721] = 2, + [70513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3446), 1, anon_sym_COLON, - [69728] = 2, + [70520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, - anon_sym_in, - [69735] = 2, + ACTIONS(3046), 1, + anon_sym_RBRACK, + [70527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(3448), 1, anon_sym_RBRACE, - [69742] = 2, + [70534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 1, - anon_sym_RBRACE, - [69749] = 2, + ACTIONS(3450), 1, + sym_identifier, + [70541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3452), 1, - anon_sym_RBRACK, - [69756] = 2, + anon_sym_COLON, + [70548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3454), 1, - anon_sym_RPAREN, - [69763] = 2, + anon_sym_in, + [70555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3456), 1, - anon_sym_COLON, - [69770] = 2, + sym_identifier, + [70562] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3458), 1, - anon_sym_RPAREN, - [69777] = 2, + anon_sym_RBRACE, + [70569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3460), 1, anon_sym_COLON, - [69784] = 2, + [70576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3462), 1, anon_sym_in, - [69791] = 2, + [70583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3464), 1, - anon_sym_RPAREN, - [69798] = 2, + sym_identifier, + [70590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3466), 1, - anon_sym_RBRACK, - [69805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2746), 1, - anon_sym_RBRACE, - [69812] = 2, + anon_sym_COLON, + [70597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3468), 1, - anon_sym_RBRACE, - [69819] = 2, + sym_identifier, + [70604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_RBRACK, - [69826] = 2, + ACTIONS(3470), 1, + anon_sym_COLON, + [70611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, - anon_sym_import, - [69833] = 2, + ACTIONS(3250), 1, + anon_sym_RBRACE, + [70618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3472), 1, - anon_sym_RBRACK, - [69840] = 2, + ts_builtin_sym_end, + [70625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3474), 1, - anon_sym_COLON, - [69847] = 2, + anon_sym_import, + [70632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3476), 1, - anon_sym_import, - [69854] = 2, + anon_sym_in, + [70639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3478), 1, - anon_sym_RBRACE, - [69861] = 2, + anon_sym_RPAREN, + [70646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3480), 1, - sym_identifier, - [69868] = 2, + anon_sym_import, + [70653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3482), 1, - anon_sym_COLON, - [69875] = 2, + anon_sym_RBRACK, + [70660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3484), 1, anon_sym_RBRACE, - [69882] = 2, + [70667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3486), 1, anon_sym_COLON, - [69889] = 2, + [70674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3488), 1, anon_sym_COLON, - [69896] = 2, + [70681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3490), 1, - anon_sym_COLON, - [69903] = 2, + anon_sym_RBRACE, + [70688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2896), 1, + anon_sym_in, + [70695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3492), 1, - anon_sym_RBRACE, - [69910] = 2, + anon_sym_COLON, + [70702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3494), 1, - anon_sym_RBRACE, - [69917] = 2, + anon_sym_COLON, + [70709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3496), 1, - anon_sym_COLON, - [69924] = 2, + anon_sym_RPAREN, + [70716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3498), 1, - sym_identifier, - [69931] = 2, + anon_sym_RBRACK, + [70723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3500), 1, - anon_sym_COLON, - [69938] = 2, + sym_identifier, + [70730] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3502), 1, - anon_sym_RPAREN, - [69945] = 2, + anon_sym_RBRACE, + [70737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3504), 1, - anon_sym_LPAREN, - [69952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - anon_sym_STAR, - [69959] = 2, + anon_sym_COLON, + [70744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3506), 1, - anon_sym_RBRACK, - [69966] = 2, + anon_sym_COLON, + [70751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3508), 1, - anon_sym_RPAREN, - [69973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, anon_sym_RBRACE, - [69980] = 2, + [70758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3510), 1, anon_sym_RBRACE, - [69987] = 2, + [70765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3512), 1, anon_sym_COLON, - [69994] = 2, + [70772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3514), 1, + anon_sym_in, + [70779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, anon_sym_RBRACE, - [70001] = 2, + [70786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3516), 1, - sym_identifier, - [70008] = 2, + anon_sym_COLON, + [70793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3518), 1, - anon_sym_in, - [70015] = 2, + anon_sym_RBRACE, + [70800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3520), 1, sym_identifier, - [70022] = 2, + [70807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_RBRACK, + [70814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + anon_sym_STAR, + [70821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3522), 1, - sym_identifier, - [70029] = 2, + anon_sym_RPAREN, + [70828] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3524), 1, - anon_sym_RBRACK, - [70036] = 2, + anon_sym_EQ, + [70835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 1, - anon_sym_in, - [70043] = 2, + ACTIONS(968), 1, + anon_sym_STAR, + [70842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1100), 1, anon_sym_def, - [70050] = 2, + [70849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 1, + anon_sym_RBRACE, + [70856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3526), 1, + anon_sym_RPAREN, + [70863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + sym_identifier, + [70870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3530), 1, + sym_identifier, + [70877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3532), 1, + sym_identifier, + [70884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3534), 1, + sym_identifier, + [70891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3536), 1, + anon_sym_COLON, + [70898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, anon_sym_in, - [70057] = 2, + [70905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, + ACTIONS(1122), 1, + anon_sym_def, + [70912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, anon_sym_in, - [70064] = 2, + [70919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, - anon_sym_RPAREN, - [70071] = 2, + ACTIONS(3184), 1, + anon_sym_in, + [70926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_RBRACK, - [70078] = 2, + ACTIONS(3538), 1, + anon_sym_COLON, + [70933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, - anon_sym_RBRACE, + ACTIONS(3540), 1, + anon_sym_COLON, + [70940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + anon_sym_RBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(156)] = 0, - [SMALL_STATE(157)] = 123, - [SMALL_STATE(158)] = 248, - [SMALL_STATE(159)] = 375, - [SMALL_STATE(160)] = 486, - [SMALL_STATE(161)] = 597, - [SMALL_STATE(162)] = 720, - [SMALL_STATE(163)] = 845, - [SMALL_STATE(164)] = 968, - [SMALL_STATE(165)] = 1090, - [SMALL_STATE(166)] = 1212, - [SMALL_STATE(167)] = 1334, - [SMALL_STATE(168)] = 1456, - [SMALL_STATE(169)] = 1571, - [SMALL_STATE(170)] = 1686, - [SMALL_STATE(171)] = 1796, - [SMALL_STATE(172)] = 1906, - [SMALL_STATE(173)] = 2016, - [SMALL_STATE(174)] = 2127, - [SMALL_STATE(175)] = 2240, - [SMALL_STATE(176)] = 2353, - [SMALL_STATE(177)] = 2462, - [SMALL_STATE(178)] = 2575, - [SMALL_STATE(179)] = 2688, - [SMALL_STATE(180)] = 2801, - [SMALL_STATE(181)] = 2912, - [SMALL_STATE(182)] = 3021, - [SMALL_STATE(183)] = 3130, - [SMALL_STATE(184)] = 3239, - [SMALL_STATE(185)] = 3348, - [SMALL_STATE(186)] = 3457, - [SMALL_STATE(187)] = 3570, - [SMALL_STATE(188)] = 3685, - [SMALL_STATE(189)] = 3798, - [SMALL_STATE(190)] = 3908, - [SMALL_STATE(191)] = 4014, - [SMALL_STATE(192)] = 4124, - [SMALL_STATE(193)] = 4234, - [SMALL_STATE(194)] = 4344, - [SMALL_STATE(195)] = 4450, - [SMALL_STATE(196)] = 4560, - [SMALL_STATE(197)] = 4672, - [SMALL_STATE(198)] = 4782, - [SMALL_STATE(199)] = 4896, - [SMALL_STATE(200)] = 5008, - [SMALL_STATE(201)] = 5118, - [SMALL_STATE(202)] = 5228, - [SMALL_STATE(203)] = 5338, - [SMALL_STATE(204)] = 5448, - [SMALL_STATE(205)] = 5558, - [SMALL_STATE(206)] = 5668, - [SMALL_STATE(207)] = 5778, - [SMALL_STATE(208)] = 5884, - [SMALL_STATE(209)] = 5998, - [SMALL_STATE(210)] = 6108, - [SMALL_STATE(211)] = 6218, - [SMALL_STATE(212)] = 6332, - [SMALL_STATE(213)] = 6438, - [SMALL_STATE(214)] = 6548, - [SMALL_STATE(215)] = 6658, - [SMALL_STATE(216)] = 6768, - [SMALL_STATE(217)] = 6878, - [SMALL_STATE(218)] = 6988, - [SMALL_STATE(219)] = 7100, - [SMALL_STATE(220)] = 7210, - [SMALL_STATE(221)] = 7320, - [SMALL_STATE(222)] = 7430, - [SMALL_STATE(223)] = 7540, - [SMALL_STATE(224)] = 7650, - [SMALL_STATE(225)] = 7760, - [SMALL_STATE(226)] = 7872, - [SMALL_STATE(227)] = 7982, - [SMALL_STATE(228)] = 8094, - [SMALL_STATE(229)] = 8204, - [SMALL_STATE(230)] = 8314, - [SMALL_STATE(231)] = 8424, - [SMALL_STATE(232)] = 8536, - [SMALL_STATE(233)] = 8643, - [SMALL_STATE(234)] = 8750, - [SMALL_STATE(235)] = 8857, - [SMALL_STATE(236)] = 8964, - [SMALL_STATE(237)] = 9059, - [SMALL_STATE(238)] = 9166, - [SMALL_STATE(239)] = 9273, - [SMALL_STATE(240)] = 9380, - [SMALL_STATE(241)] = 9487, - [SMALL_STATE(242)] = 9594, - [SMALL_STATE(243)] = 9698, - [SMALL_STATE(244)] = 9802, - [SMALL_STATE(245)] = 9908, - [SMALL_STATE(246)] = 10014, - [SMALL_STATE(247)] = 10120, - [SMALL_STATE(248)] = 10226, - [SMALL_STATE(249)] = 10332, - [SMALL_STATE(250)] = 10435, - [SMALL_STATE(251)] = 10538, - [SMALL_STATE(252)] = 10641, - [SMALL_STATE(253)] = 10744, - [SMALL_STATE(254)] = 10847, - [SMALL_STATE(255)] = 10950, - [SMALL_STATE(256)] = 11053, - [SMALL_STATE(257)] = 11156, - [SMALL_STATE(258)] = 11259, - [SMALL_STATE(259)] = 11362, - [SMALL_STATE(260)] = 11465, - [SMALL_STATE(261)] = 11568, - [SMALL_STATE(262)] = 11671, - [SMALL_STATE(263)] = 11774, - [SMALL_STATE(264)] = 11877, - [SMALL_STATE(265)] = 11979, - [SMALL_STATE(266)] = 12081, - [SMALL_STATE(267)] = 12155, - [SMALL_STATE(268)] = 12257, - [SMALL_STATE(269)] = 12331, - [SMALL_STATE(270)] = 12405, + [SMALL_STATE(157)] = 0, + [SMALL_STATE(158)] = 127, + [SMALL_STATE(159)] = 254, + [SMALL_STATE(160)] = 379, + [SMALL_STATE(161)] = 504, + [SMALL_STATE(162)] = 615, + [SMALL_STATE(163)] = 726, + [SMALL_STATE(164)] = 851, + [SMALL_STATE(165)] = 978, + [SMALL_STATE(166)] = 1100, + [SMALL_STATE(167)] = 1222, + [SMALL_STATE(168)] = 1344, + [SMALL_STATE(169)] = 1466, + [SMALL_STATE(170)] = 1581, + [SMALL_STATE(171)] = 1696, + [SMALL_STATE(172)] = 1806, + [SMALL_STATE(173)] = 1916, + [SMALL_STATE(174)] = 2026, + [SMALL_STATE(175)] = 2135, + [SMALL_STATE(176)] = 2244, + [SMALL_STATE(177)] = 2353, + [SMALL_STATE(178)] = 2462, + [SMALL_STATE(179)] = 2577, + [SMALL_STATE(180)] = 2690, + [SMALL_STATE(181)] = 2799, + [SMALL_STATE(182)] = 2914, + [SMALL_STATE(183)] = 3027, + [SMALL_STATE(184)] = 3144, + [SMALL_STATE(185)] = 3255, + [SMALL_STATE(186)] = 3364, + [SMALL_STATE(187)] = 3479, + [SMALL_STATE(188)] = 3588, + [SMALL_STATE(189)] = 3703, + [SMALL_STATE(190)] = 3814, + [SMALL_STATE(191)] = 3927, + [SMALL_STATE(192)] = 4037, + [SMALL_STATE(193)] = 4151, + [SMALL_STATE(194)] = 4261, + [SMALL_STATE(195)] = 4371, + [SMALL_STATE(196)] = 4481, + [SMALL_STATE(197)] = 4591, + [SMALL_STATE(198)] = 4701, + [SMALL_STATE(199)] = 4811, + [SMALL_STATE(200)] = 4921, + [SMALL_STATE(201)] = 5031, + [SMALL_STATE(202)] = 5141, + [SMALL_STATE(203)] = 5247, + [SMALL_STATE(204)] = 5357, + [SMALL_STATE(205)] = 5467, + [SMALL_STATE(206)] = 5577, + [SMALL_STATE(207)] = 5687, + [SMALL_STATE(208)] = 5797, + [SMALL_STATE(209)] = 5909, + [SMALL_STATE(210)] = 6023, + [SMALL_STATE(211)] = 6135, + [SMALL_STATE(212)] = 6245, + [SMALL_STATE(213)] = 6357, + [SMALL_STATE(214)] = 6471, + [SMALL_STATE(215)] = 6577, + [SMALL_STATE(216)] = 6691, + [SMALL_STATE(217)] = 6801, + [SMALL_STATE(218)] = 6911, + [SMALL_STATE(219)] = 7021, + [SMALL_STATE(220)] = 7131, + [SMALL_STATE(221)] = 7241, + [SMALL_STATE(222)] = 7351, + [SMALL_STATE(223)] = 7465, + [SMALL_STATE(224)] = 7577, + [SMALL_STATE(225)] = 7683, + [SMALL_STATE(226)] = 7793, + [SMALL_STATE(227)] = 7903, + [SMALL_STATE(228)] = 8013, + [SMALL_STATE(229)] = 8119, + [SMALL_STATE(230)] = 8229, + [SMALL_STATE(231)] = 8339, + [SMALL_STATE(232)] = 8453, + [SMALL_STATE(233)] = 8565, + [SMALL_STATE(234)] = 8675, + [SMALL_STATE(235)] = 8789, + [SMALL_STATE(236)] = 8901, + [SMALL_STATE(237)] = 9015, + [SMALL_STATE(238)] = 9129, + [SMALL_STATE(239)] = 9236, + [SMALL_STATE(240)] = 9343, + [SMALL_STATE(241)] = 9450, + [SMALL_STATE(242)] = 9557, + [SMALL_STATE(243)] = 9664, + [SMALL_STATE(244)] = 9771, + [SMALL_STATE(245)] = 9866, + [SMALL_STATE(246)] = 9973, + [SMALL_STATE(247)] = 10080, + [SMALL_STATE(248)] = 10186, + [SMALL_STATE(249)] = 10292, + [SMALL_STATE(250)] = 10398, + [SMALL_STATE(251)] = 10502, + [SMALL_STATE(252)] = 10608, + [SMALL_STATE(253)] = 10712, + [SMALL_STATE(254)] = 10818, + [SMALL_STATE(255)] = 10921, + [SMALL_STATE(256)] = 11024, + [SMALL_STATE(257)] = 11127, + [SMALL_STATE(258)] = 11230, + [SMALL_STATE(259)] = 11333, + [SMALL_STATE(260)] = 11436, + [SMALL_STATE(261)] = 11539, + [SMALL_STATE(262)] = 11642, + [SMALL_STATE(263)] = 11745, + [SMALL_STATE(264)] = 11848, + [SMALL_STATE(265)] = 11951, + [SMALL_STATE(266)] = 12051, + [SMALL_STATE(267)] = 12125, + [SMALL_STATE(268)] = 12199, + [SMALL_STATE(269)] = 12301, + [SMALL_STATE(270)] = 12403, [SMALL_STATE(271)] = 12505, - [SMALL_STATE(272)] = 12579, - [SMALL_STATE(273)] = 12653, - [SMALL_STATE(274)] = 12727, - [SMALL_STATE(275)] = 12829, - [SMALL_STATE(276)] = 12931, - [SMALL_STATE(277)] = 13005, - [SMALL_STATE(278)] = 13107, - [SMALL_STATE(279)] = 13209, - [SMALL_STATE(280)] = 13283, - [SMALL_STATE(281)] = 13383, - [SMALL_STATE(282)] = 13485, + [SMALL_STATE(272)] = 12607, + [SMALL_STATE(273)] = 12681, + [SMALL_STATE(274)] = 12783, + [SMALL_STATE(275)] = 12885, + [SMALL_STATE(276)] = 12959, + [SMALL_STATE(277)] = 13059, + [SMALL_STATE(278)] = 13161, + [SMALL_STATE(279)] = 13235, + [SMALL_STATE(280)] = 13335, + [SMALL_STATE(281)] = 13437, + [SMALL_STATE(282)] = 13511, [SMALL_STATE(283)] = 13585, - [SMALL_STATE(284)] = 13687, - [SMALL_STATE(285)] = 13789, - [SMALL_STATE(286)] = 13891, - [SMALL_STATE(287)] = 13993, - [SMALL_STATE(288)] = 14095, - [SMALL_STATE(289)] = 14192, - [SMALL_STATE(290)] = 14289, - [SMALL_STATE(291)] = 14386, - [SMALL_STATE(292)] = 14483, - [SMALL_STATE(293)] = 14580, - [SMALL_STATE(294)] = 14677, - [SMALL_STATE(295)] = 14774, - [SMALL_STATE(296)] = 14873, - [SMALL_STATE(297)] = 14972, - [SMALL_STATE(298)] = 15071, - [SMALL_STATE(299)] = 15168, - [SMALL_STATE(300)] = 15265, - [SMALL_STATE(301)] = 15362, - [SMALL_STATE(302)] = 15459, - [SMALL_STATE(303)] = 15558, - [SMALL_STATE(304)] = 15657, - [SMALL_STATE(305)] = 15756, - [SMALL_STATE(306)] = 15853, - [SMALL_STATE(307)] = 15950, - [SMALL_STATE(308)] = 16049, - [SMALL_STATE(309)] = 16148, - [SMALL_STATE(310)] = 16247, - [SMALL_STATE(311)] = 16307, - [SMALL_STATE(312)] = 16377, - [SMALL_STATE(313)] = 16447, - [SMALL_STATE(314)] = 16517, - [SMALL_STATE(315)] = 16613, - [SMALL_STATE(316)] = 16709, - [SMALL_STATE(317)] = 16773, - [SMALL_STATE(318)] = 16837, - [SMALL_STATE(319)] = 16897, - [SMALL_STATE(320)] = 16957, - [SMALL_STATE(321)] = 17017, - [SMALL_STATE(322)] = 17077, - [SMALL_STATE(323)] = 17137, - [SMALL_STATE(324)] = 17207, - [SMALL_STATE(325)] = 17267, - [SMALL_STATE(326)] = 17337, - [SMALL_STATE(327)] = 17397, - [SMALL_STATE(328)] = 17457, - [SMALL_STATE(329)] = 17517, - [SMALL_STATE(330)] = 17587, - [SMALL_STATE(331)] = 17657, - [SMALL_STATE(332)] = 17727, - [SMALL_STATE(333)] = 17787, - [SMALL_STATE(334)] = 17851, - [SMALL_STATE(335)] = 17915, - [SMALL_STATE(336)] = 18011, - [SMALL_STATE(337)] = 18071, - [SMALL_STATE(338)] = 18164, - [SMALL_STATE(339)] = 18257, - [SMALL_STATE(340)] = 18350, - [SMALL_STATE(341)] = 18443, - [SMALL_STATE(342)] = 18536, - [SMALL_STATE(343)] = 18629, - [SMALL_STATE(344)] = 18722, - [SMALL_STATE(345)] = 18815, - [SMALL_STATE(346)] = 18908, - [SMALL_STATE(347)] = 19001, - [SMALL_STATE(348)] = 19094, - [SMALL_STATE(349)] = 19187, - [SMALL_STATE(350)] = 19280, - [SMALL_STATE(351)] = 19373, - [SMALL_STATE(352)] = 19466, - [SMALL_STATE(353)] = 19559, - [SMALL_STATE(354)] = 19652, - [SMALL_STATE(355)] = 19745, - [SMALL_STATE(356)] = 19838, - [SMALL_STATE(357)] = 19931, - [SMALL_STATE(358)] = 20024, - [SMALL_STATE(359)] = 20117, - [SMALL_STATE(360)] = 20210, - [SMALL_STATE(361)] = 20303, - [SMALL_STATE(362)] = 20396, - [SMALL_STATE(363)] = 20489, - [SMALL_STATE(364)] = 20582, - [SMALL_STATE(365)] = 20647, - [SMALL_STATE(366)] = 20742, - [SMALL_STATE(367)] = 20835, - [SMALL_STATE(368)] = 20928, - [SMALL_STATE(369)] = 21021, - [SMALL_STATE(370)] = 21114, - [SMALL_STATE(371)] = 21207, - [SMALL_STATE(372)] = 21300, - [SMALL_STATE(373)] = 21393, - [SMALL_STATE(374)] = 21486, - [SMALL_STATE(375)] = 21551, - [SMALL_STATE(376)] = 21644, - [SMALL_STATE(377)] = 21737, - [SMALL_STATE(378)] = 21830, - [SMALL_STATE(379)] = 21923, - [SMALL_STATE(380)] = 22016, - [SMALL_STATE(381)] = 22109, - [SMALL_STATE(382)] = 22202, - [SMALL_STATE(383)] = 22295, - [SMALL_STATE(384)] = 22388, - [SMALL_STATE(385)] = 22481, - [SMALL_STATE(386)] = 22574, - [SMALL_STATE(387)] = 22667, - [SMALL_STATE(388)] = 22760, - [SMALL_STATE(389)] = 22853, - [SMALL_STATE(390)] = 22946, - [SMALL_STATE(391)] = 23039, - [SMALL_STATE(392)] = 23132, - [SMALL_STATE(393)] = 23225, - [SMALL_STATE(394)] = 23318, - [SMALL_STATE(395)] = 23411, - [SMALL_STATE(396)] = 23504, - [SMALL_STATE(397)] = 23597, - [SMALL_STATE(398)] = 23690, - [SMALL_STATE(399)] = 23783, - [SMALL_STATE(400)] = 23876, - [SMALL_STATE(401)] = 23969, - [SMALL_STATE(402)] = 24062, - [SMALL_STATE(403)] = 24155, - [SMALL_STATE(404)] = 24248, - [SMALL_STATE(405)] = 24341, - [SMALL_STATE(406)] = 24434, - [SMALL_STATE(407)] = 24527, - [SMALL_STATE(408)] = 24620, - [SMALL_STATE(409)] = 24713, - [SMALL_STATE(410)] = 24806, - [SMALL_STATE(411)] = 24899, - [SMALL_STATE(412)] = 24992, - [SMALL_STATE(413)] = 25085, - [SMALL_STATE(414)] = 25178, - [SMALL_STATE(415)] = 25271, - [SMALL_STATE(416)] = 25364, - [SMALL_STATE(417)] = 25457, - [SMALL_STATE(418)] = 25550, - [SMALL_STATE(419)] = 25643, - [SMALL_STATE(420)] = 25736, - [SMALL_STATE(421)] = 25829, - [SMALL_STATE(422)] = 25922, - [SMALL_STATE(423)] = 26015, - [SMALL_STATE(424)] = 26108, - [SMALL_STATE(425)] = 26201, - [SMALL_STATE(426)] = 26294, - [SMALL_STATE(427)] = 26387, - [SMALL_STATE(428)] = 26480, - [SMALL_STATE(429)] = 26573, - [SMALL_STATE(430)] = 26666, - [SMALL_STATE(431)] = 26739, - [SMALL_STATE(432)] = 26832, - [SMALL_STATE(433)] = 26925, - [SMALL_STATE(434)] = 26998, - [SMALL_STATE(435)] = 27091, - [SMALL_STATE(436)] = 27149, - [SMALL_STATE(437)] = 27211, - [SMALL_STATE(438)] = 27273, - [SMALL_STATE(439)] = 27331, - [SMALL_STATE(440)] = 27389, - [SMALL_STATE(441)] = 27447, - [SMALL_STATE(442)] = 27505, - [SMALL_STATE(443)] = 27563, - [SMALL_STATE(444)] = 27621, - [SMALL_STATE(445)] = 27679, - [SMALL_STATE(446)] = 27737, - [SMALL_STATE(447)] = 27795, - [SMALL_STATE(448)] = 27853, - [SMALL_STATE(449)] = 27911, - [SMALL_STATE(450)] = 27969, - [SMALL_STATE(451)] = 28039, - [SMALL_STATE(452)] = 28101, - [SMALL_STATE(453)] = 28171, - [SMALL_STATE(454)] = 28229, - [SMALL_STATE(455)] = 28287, - [SMALL_STATE(456)] = 28345, - [SMALL_STATE(457)] = 28403, - [SMALL_STATE(458)] = 28461, - [SMALL_STATE(459)] = 28523, - [SMALL_STATE(460)] = 28581, - [SMALL_STATE(461)] = 28639, - [SMALL_STATE(462)] = 28696, - [SMALL_STATE(463)] = 28757, - [SMALL_STATE(464)] = 28818, - [SMALL_STATE(465)] = 28879, - [SMALL_STATE(466)] = 28940, - [SMALL_STATE(467)] = 29001, - [SMALL_STATE(468)] = 29058, - [SMALL_STATE(469)] = 29115, - [SMALL_STATE(470)] = 29172, - [SMALL_STATE(471)] = 29233, - [SMALL_STATE(472)] = 29290, - [SMALL_STATE(473)] = 29351, - [SMALL_STATE(474)] = 29412, - [SMALL_STATE(475)] = 29473, - [SMALL_STATE(476)] = 29534, - [SMALL_STATE(477)] = 29629, - [SMALL_STATE(478)] = 29690, - [SMALL_STATE(479)] = 29751, - [SMALL_STATE(480)] = 29812, - [SMALL_STATE(481)] = 29879, - [SMALL_STATE(482)] = 29936, - [SMALL_STATE(483)] = 30029, - [SMALL_STATE(484)] = 30090, - [SMALL_STATE(485)] = 30151, - [SMALL_STATE(486)] = 30244, - [SMALL_STATE(487)] = 30305, - [SMALL_STATE(488)] = 30369, - [SMALL_STATE(489)] = 30425, - [SMALL_STATE(490)] = 30481, - [SMALL_STATE(491)] = 30545, - [SMALL_STATE(492)] = 30601, - [SMALL_STATE(493)] = 30693, - [SMALL_STATE(494)] = 30785, - [SMALL_STATE(495)] = 30849, - [SMALL_STATE(496)] = 30905, - [SMALL_STATE(497)] = 30961, - [SMALL_STATE(498)] = 31017, - [SMALL_STATE(499)] = 31073, - [SMALL_STATE(500)] = 31129, - [SMALL_STATE(501)] = 31185, - [SMALL_STATE(502)] = 31277, - [SMALL_STATE(503)] = 31333, - [SMALL_STATE(504)] = 31397, - [SMALL_STATE(505)] = 31489, - [SMALL_STATE(506)] = 31545, - [SMALL_STATE(507)] = 31601, - [SMALL_STATE(508)] = 31657, - [SMALL_STATE(509)] = 31713, - [SMALL_STATE(510)] = 31805, - [SMALL_STATE(511)] = 31897, - [SMALL_STATE(512)] = 31952, - [SMALL_STATE(513)] = 32007, - [SMALL_STATE(514)] = 32062, - [SMALL_STATE(515)] = 32117, - [SMALL_STATE(516)] = 32172, - [SMALL_STATE(517)] = 32227, - [SMALL_STATE(518)] = 32282, - [SMALL_STATE(519)] = 32337, - [SMALL_STATE(520)] = 32392, - [SMALL_STATE(521)] = 32447, - [SMALL_STATE(522)] = 32502, - [SMALL_STATE(523)] = 32557, - [SMALL_STATE(524)] = 32612, - [SMALL_STATE(525)] = 32667, - [SMALL_STATE(526)] = 32722, - [SMALL_STATE(527)] = 32777, - [SMALL_STATE(528)] = 32832, - [SMALL_STATE(529)] = 32887, - [SMALL_STATE(530)] = 32942, - [SMALL_STATE(531)] = 32997, - [SMALL_STATE(532)] = 33052, - [SMALL_STATE(533)] = 33107, - [SMALL_STATE(534)] = 33162, - [SMALL_STATE(535)] = 33217, - [SMALL_STATE(536)] = 33272, - [SMALL_STATE(537)] = 33327, - [SMALL_STATE(538)] = 33382, - [SMALL_STATE(539)] = 33437, - [SMALL_STATE(540)] = 33492, - [SMALL_STATE(541)] = 33547, - [SMALL_STATE(542)] = 33602, - [SMALL_STATE(543)] = 33657, - [SMALL_STATE(544)] = 33712, - [SMALL_STATE(545)] = 33767, - [SMALL_STATE(546)] = 33822, - [SMALL_STATE(547)] = 33877, - [SMALL_STATE(548)] = 33932, - [SMALL_STATE(549)] = 33987, - [SMALL_STATE(550)] = 34042, - [SMALL_STATE(551)] = 34097, - [SMALL_STATE(552)] = 34152, - [SMALL_STATE(553)] = 34207, - [SMALL_STATE(554)] = 34262, - [SMALL_STATE(555)] = 34317, - [SMALL_STATE(556)] = 34372, - [SMALL_STATE(557)] = 34427, - [SMALL_STATE(558)] = 34488, - [SMALL_STATE(559)] = 34543, - [SMALL_STATE(560)] = 34598, - [SMALL_STATE(561)] = 34653, - [SMALL_STATE(562)] = 34708, - [SMALL_STATE(563)] = 34763, - [SMALL_STATE(564)] = 34818, - [SMALL_STATE(565)] = 34873, - [SMALL_STATE(566)] = 34928, - [SMALL_STATE(567)] = 34983, - [SMALL_STATE(568)] = 35038, - [SMALL_STATE(569)] = 35093, - [SMALL_STATE(570)] = 35148, - [SMALL_STATE(571)] = 35203, - [SMALL_STATE(572)] = 35264, - [SMALL_STATE(573)] = 35319, - [SMALL_STATE(574)] = 35374, - [SMALL_STATE(575)] = 35429, - [SMALL_STATE(576)] = 35484, - [SMALL_STATE(577)] = 35539, - [SMALL_STATE(578)] = 35594, - [SMALL_STATE(579)] = 35649, - [SMALL_STATE(580)] = 35704, - [SMALL_STATE(581)] = 35759, - [SMALL_STATE(582)] = 35814, - [SMALL_STATE(583)] = 35875, - [SMALL_STATE(584)] = 35930, - [SMALL_STATE(585)] = 35985, - [SMALL_STATE(586)] = 36046, - [SMALL_STATE(587)] = 36101, - [SMALL_STATE(588)] = 36156, - [SMALL_STATE(589)] = 36245, - [SMALL_STATE(590)] = 36300, - [SMALL_STATE(591)] = 36389, - [SMALL_STATE(592)] = 36444, - [SMALL_STATE(593)] = 36499, - [SMALL_STATE(594)] = 36554, - [SMALL_STATE(595)] = 36609, - [SMALL_STATE(596)] = 36664, - [SMALL_STATE(597)] = 36719, - [SMALL_STATE(598)] = 36774, - [SMALL_STATE(599)] = 36829, - [SMALL_STATE(600)] = 36884, - [SMALL_STATE(601)] = 36939, - [SMALL_STATE(602)] = 36994, - [SMALL_STATE(603)] = 37049, - [SMALL_STATE(604)] = 37104, - [SMALL_STATE(605)] = 37159, - [SMALL_STATE(606)] = 37214, - [SMALL_STATE(607)] = 37269, - [SMALL_STATE(608)] = 37324, - [SMALL_STATE(609)] = 37379, - [SMALL_STATE(610)] = 37434, - [SMALL_STATE(611)] = 37489, - [SMALL_STATE(612)] = 37544, - [SMALL_STATE(613)] = 37599, - [SMALL_STATE(614)] = 37654, - [SMALL_STATE(615)] = 37709, - [SMALL_STATE(616)] = 37792, - [SMALL_STATE(617)] = 37869, - [SMALL_STATE(618)] = 37946, - [SMALL_STATE(619)] = 38023, - [SMALL_STATE(620)] = 38100, - [SMALL_STATE(621)] = 38177, - [SMALL_STATE(622)] = 38254, - [SMALL_STATE(623)] = 38328, - [SMALL_STATE(624)] = 38402, - [SMALL_STATE(625)] = 38476, - [SMALL_STATE(626)] = 38550, - [SMALL_STATE(627)] = 38624, - [SMALL_STATE(628)] = 38698, - [SMALL_STATE(629)] = 38772, - [SMALL_STATE(630)] = 38846, - [SMALL_STATE(631)] = 38920, - [SMALL_STATE(632)] = 38994, - [SMALL_STATE(633)] = 39072, - [SMALL_STATE(634)] = 39146, - [SMALL_STATE(635)] = 39220, - [SMALL_STATE(636)] = 39294, - [SMALL_STATE(637)] = 39372, - [SMALL_STATE(638)] = 39446, - [SMALL_STATE(639)] = 39520, - [SMALL_STATE(640)] = 39594, - [SMALL_STATE(641)] = 39668, - [SMALL_STATE(642)] = 39742, - [SMALL_STATE(643)] = 39816, - [SMALL_STATE(644)] = 39890, - [SMALL_STATE(645)] = 39964, - [SMALL_STATE(646)] = 40018, - [SMALL_STATE(647)] = 40092, - [SMALL_STATE(648)] = 40166, - [SMALL_STATE(649)] = 40240, - [SMALL_STATE(650)] = 40314, - [SMALL_STATE(651)] = 40388, - [SMALL_STATE(652)] = 40462, - [SMALL_STATE(653)] = 40536, - [SMALL_STATE(654)] = 40610, - [SMALL_STATE(655)] = 40684, - [SMALL_STATE(656)] = 40758, - [SMALL_STATE(657)] = 40832, - [SMALL_STATE(658)] = 40906, - [SMALL_STATE(659)] = 40960, - [SMALL_STATE(660)] = 41034, - [SMALL_STATE(661)] = 41108, - [SMALL_STATE(662)] = 41182, - [SMALL_STATE(663)] = 41256, - [SMALL_STATE(664)] = 41330, - [SMALL_STATE(665)] = 41404, - [SMALL_STATE(666)] = 41478, - [SMALL_STATE(667)] = 41552, - [SMALL_STATE(668)] = 41626, - [SMALL_STATE(669)] = 41700, - [SMALL_STATE(670)] = 41774, - [SMALL_STATE(671)] = 41848, - [SMALL_STATE(672)] = 41922, - [SMALL_STATE(673)] = 41996, - [SMALL_STATE(674)] = 42070, - [SMALL_STATE(675)] = 42144, - [SMALL_STATE(676)] = 42198, - [SMALL_STATE(677)] = 42252, - [SMALL_STATE(678)] = 42326, - [SMALL_STATE(679)] = 42400, - [SMALL_STATE(680)] = 42474, - [SMALL_STATE(681)] = 42548, - [SMALL_STATE(682)] = 42622, - [SMALL_STATE(683)] = 42696, - [SMALL_STATE(684)] = 42770, - [SMALL_STATE(685)] = 42844, - [SMALL_STATE(686)] = 42918, - [SMALL_STATE(687)] = 42992, - [SMALL_STATE(688)] = 43066, - [SMALL_STATE(689)] = 43140, - [SMALL_STATE(690)] = 43214, - [SMALL_STATE(691)] = 43288, - [SMALL_STATE(692)] = 43362, - [SMALL_STATE(693)] = 43416, - [SMALL_STATE(694)] = 43470, - [SMALL_STATE(695)] = 43544, - [SMALL_STATE(696)] = 43618, - [SMALL_STATE(697)] = 43666, - [SMALL_STATE(698)] = 43714, - [SMALL_STATE(699)] = 43762, - [SMALL_STATE(700)] = 43810, - [SMALL_STATE(701)] = 43857, - [SMALL_STATE(702)] = 43904, - [SMALL_STATE(703)] = 43951, - [SMALL_STATE(704)] = 43998, - [SMALL_STATE(705)] = 44045, - [SMALL_STATE(706)] = 44092, - [SMALL_STATE(707)] = 44139, - [SMALL_STATE(708)] = 44186, - [SMALL_STATE(709)] = 44233, - [SMALL_STATE(710)] = 44280, - [SMALL_STATE(711)] = 44327, - [SMALL_STATE(712)] = 44374, - [SMALL_STATE(713)] = 44421, - [SMALL_STATE(714)] = 44468, - [SMALL_STATE(715)] = 44515, - [SMALL_STATE(716)] = 44562, - [SMALL_STATE(717)] = 44609, - [SMALL_STATE(718)] = 44656, - [SMALL_STATE(719)] = 44703, - [SMALL_STATE(720)] = 44784, - [SMALL_STATE(721)] = 44831, - [SMALL_STATE(722)] = 44878, - [SMALL_STATE(723)] = 44925, - [SMALL_STATE(724)] = 44972, - [SMALL_STATE(725)] = 45019, - [SMALL_STATE(726)] = 45066, - [SMALL_STATE(727)] = 45147, - [SMALL_STATE(728)] = 45194, - [SMALL_STATE(729)] = 45241, - [SMALL_STATE(730)] = 45288, - [SMALL_STATE(731)] = 45335, - [SMALL_STATE(732)] = 45382, - [SMALL_STATE(733)] = 45429, - [SMALL_STATE(734)] = 45476, - [SMALL_STATE(735)] = 45523, - [SMALL_STATE(736)] = 45579, - [SMALL_STATE(737)] = 45649, - [SMALL_STATE(738)] = 45705, - [SMALL_STATE(739)] = 45755, - [SMALL_STATE(740)] = 45821, - [SMALL_STATE(741)] = 45877, - [SMALL_STATE(742)] = 45933, - [SMALL_STATE(743)] = 45997, - [SMALL_STATE(744)] = 46053, - [SMALL_STATE(745)] = 46123, - [SMALL_STATE(746)] = 46193, - [SMALL_STATE(747)] = 46249, - [SMALL_STATE(748)] = 46311, - [SMALL_STATE(749)] = 46381, - [SMALL_STATE(750)] = 46449, - [SMALL_STATE(751)] = 46509, - [SMALL_STATE(752)] = 46565, - [SMALL_STATE(753)] = 46615, - [SMALL_STATE(754)] = 46681, - [SMALL_STATE(755)] = 46745, - [SMALL_STATE(756)] = 46801, - [SMALL_STATE(757)] = 46863, - [SMALL_STATE(758)] = 46933, - [SMALL_STATE(759)] = 47003, - [SMALL_STATE(760)] = 47053, - [SMALL_STATE(761)] = 47103, - [SMALL_STATE(762)] = 47171, - [SMALL_STATE(763)] = 47231, - [SMALL_STATE(764)] = 47310, - [SMALL_STATE(765)] = 47357, - [SMALL_STATE(766)] = 47436, - [SMALL_STATE(767)] = 47485, - [SMALL_STATE(768)] = 47534, - [SMALL_STATE(769)] = 47583, - [SMALL_STATE(770)] = 47632, - [SMALL_STATE(771)] = 47681, - [SMALL_STATE(772)] = 47730, - [SMALL_STATE(773)] = 47775, - [SMALL_STATE(774)] = 47822, - [SMALL_STATE(775)] = 47871, - [SMALL_STATE(776)] = 47920, - [SMALL_STATE(777)] = 47969, - [SMALL_STATE(778)] = 48014, - [SMALL_STATE(779)] = 48063, - [SMALL_STATE(780)] = 48112, - [SMALL_STATE(781)] = 48189, - [SMALL_STATE(782)] = 48236, - [SMALL_STATE(783)] = 48285, - [SMALL_STATE(784)] = 48332, - [SMALL_STATE(785)] = 48386, - [SMALL_STATE(786)] = 48450, - [SMALL_STATE(787)] = 48504, - [SMALL_STATE(788)] = 48548, - [SMALL_STATE(789)] = 48592, - [SMALL_STATE(790)] = 48660, - [SMALL_STATE(791)] = 48728, - [SMALL_STATE(792)] = 48782, - [SMALL_STATE(793)] = 48858, - [SMALL_STATE(794)] = 48906, - [SMALL_STATE(795)] = 48954, - [SMALL_STATE(796)] = 48998, - [SMALL_STATE(797)] = 49042, - [SMALL_STATE(798)] = 49096, - [SMALL_STATE(799)] = 49150, - [SMALL_STATE(800)] = 49204, - [SMALL_STATE(801)] = 49258, - [SMALL_STATE(802)] = 49312, - [SMALL_STATE(803)] = 49372, - [SMALL_STATE(804)] = 49426, - [SMALL_STATE(805)] = 49494, - [SMALL_STATE(806)] = 49562, - [SMALL_STATE(807)] = 49628, - [SMALL_STATE(808)] = 49686, - [SMALL_STATE(809)] = 49740, - [SMALL_STATE(810)] = 49808, - [SMALL_STATE(811)] = 49872, - [SMALL_STATE(812)] = 49934, - [SMALL_STATE(813)] = 50000, - [SMALL_STATE(814)] = 50068, - [SMALL_STATE(815)] = 50136, - [SMALL_STATE(816)] = 50194, - [SMALL_STATE(817)] = 50248, - [SMALL_STATE(818)] = 50308, - [SMALL_STATE(819)] = 50376, - [SMALL_STATE(820)] = 50440, - [SMALL_STATE(821)] = 50502, - [SMALL_STATE(822)] = 50564, - [SMALL_STATE(823)] = 50632, - [SMALL_STATE(824)] = 50698, - [SMALL_STATE(825)] = 50756, - [SMALL_STATE(826)] = 50810, - [SMALL_STATE(827)] = 50870, - [SMALL_STATE(828)] = 50951, - [SMALL_STATE(829)] = 50998, - [SMALL_STATE(830)] = 51043, - [SMALL_STATE(831)] = 51124, - [SMALL_STATE(832)] = 51177, - [SMALL_STATE(833)] = 51236, - [SMALL_STATE(834)] = 51289, - [SMALL_STATE(835)] = 51334, - [SMALL_STATE(836)] = 51387, - [SMALL_STATE(837)] = 51430, - [SMALL_STATE(838)] = 51473, - [SMALL_STATE(839)] = 51540, - [SMALL_STATE(840)] = 51585, - [SMALL_STATE(841)] = 51650, - [SMALL_STATE(842)] = 51707, - [SMALL_STATE(843)] = 51754, - [SMALL_STATE(844)] = 51797, - [SMALL_STATE(845)] = 51842, - [SMALL_STATE(846)] = 51905, - [SMALL_STATE(847)] = 51966, - [SMALL_STATE(848)] = 52047, - [SMALL_STATE(849)] = 52092, - [SMALL_STATE(850)] = 52139, - [SMALL_STATE(851)] = 52184, - [SMALL_STATE(852)] = 52229, - [SMALL_STATE(853)] = 52272, - [SMALL_STATE(854)] = 52315, - [SMALL_STATE(855)] = 52360, - [SMALL_STATE(856)] = 52427, - [SMALL_STATE(857)] = 52494, - [SMALL_STATE(858)] = 52537, - [SMALL_STATE(859)] = 52618, - [SMALL_STATE(860)] = 52663, - [SMALL_STATE(861)] = 52706, - [SMALL_STATE(862)] = 52751, - [SMALL_STATE(863)] = 52798, - [SMALL_STATE(864)] = 52843, - [SMALL_STATE(865)] = 52886, - [SMALL_STATE(866)] = 52931, - [SMALL_STATE(867)] = 52984, - [SMALL_STATE(868)] = 53026, - [SMALL_STATE(869)] = 53068, - [SMALL_STATE(870)] = 53110, - [SMALL_STATE(871)] = 53152, - [SMALL_STATE(872)] = 53196, - [SMALL_STATE(873)] = 53240, - [SMALL_STATE(874)] = 53282, - [SMALL_STATE(875)] = 53360, - [SMALL_STATE(876)] = 53438, - [SMALL_STATE(877)] = 53480, - [SMALL_STATE(878)] = 53524, - [SMALL_STATE(879)] = 53566, - [SMALL_STATE(880)] = 53610, - [SMALL_STATE(881)] = 53652, - [SMALL_STATE(882)] = 53694, - [SMALL_STATE(883)] = 53736, - [SMALL_STATE(884)] = 53780, - [SMALL_STATE(885)] = 53822, - [SMALL_STATE(886)] = 53864, - [SMALL_STATE(887)] = 53906, - [SMALL_STATE(888)] = 53948, - [SMALL_STATE(889)] = 53990, - [SMALL_STATE(890)] = 54070, - [SMALL_STATE(891)] = 54112, - [SMALL_STATE(892)] = 54154, - [SMALL_STATE(893)] = 54196, - [SMALL_STATE(894)] = 54238, - [SMALL_STATE(895)] = 54280, - [SMALL_STATE(896)] = 54322, - [SMALL_STATE(897)] = 54364, - [SMALL_STATE(898)] = 54406, - [SMALL_STATE(899)] = 54448, - [SMALL_STATE(900)] = 54526, - [SMALL_STATE(901)] = 54568, - [SMALL_STATE(902)] = 54610, - [SMALL_STATE(903)] = 54652, - [SMALL_STATE(904)] = 54694, - [SMALL_STATE(905)] = 54736, - [SMALL_STATE(906)] = 54778, - [SMALL_STATE(907)] = 54820, - [SMALL_STATE(908)] = 54862, - [SMALL_STATE(909)] = 54904, - [SMALL_STATE(910)] = 54946, - [SMALL_STATE(911)] = 54988, - [SMALL_STATE(912)] = 55030, - [SMALL_STATE(913)] = 55072, - [SMALL_STATE(914)] = 55114, - [SMALL_STATE(915)] = 55156, - [SMALL_STATE(916)] = 55198, - [SMALL_STATE(917)] = 55240, - [SMALL_STATE(918)] = 55282, - [SMALL_STATE(919)] = 55324, - [SMALL_STATE(920)] = 55366, - [SMALL_STATE(921)] = 55408, - [SMALL_STATE(922)] = 55450, - [SMALL_STATE(923)] = 55492, - [SMALL_STATE(924)] = 55570, - [SMALL_STATE(925)] = 55648, - [SMALL_STATE(926)] = 55690, - [SMALL_STATE(927)] = 55732, - [SMALL_STATE(928)] = 55774, - [SMALL_STATE(929)] = 55816, - [SMALL_STATE(930)] = 55858, - [SMALL_STATE(931)] = 55900, - [SMALL_STATE(932)] = 55942, - [SMALL_STATE(933)] = 55984, - [SMALL_STATE(934)] = 56026, - [SMALL_STATE(935)] = 56068, - [SMALL_STATE(936)] = 56110, - [SMALL_STATE(937)] = 56152, - [SMALL_STATE(938)] = 56194, - [SMALL_STATE(939)] = 56236, - [SMALL_STATE(940)] = 56278, - [SMALL_STATE(941)] = 56320, - [SMALL_STATE(942)] = 56362, - [SMALL_STATE(943)] = 56404, - [SMALL_STATE(944)] = 56446, - [SMALL_STATE(945)] = 56488, - [SMALL_STATE(946)] = 56530, - [SMALL_STATE(947)] = 56571, - [SMALL_STATE(948)] = 56612, - [SMALL_STATE(949)] = 56653, - [SMALL_STATE(950)] = 56694, - [SMALL_STATE(951)] = 56735, - [SMALL_STATE(952)] = 56776, - [SMALL_STATE(953)] = 56817, - [SMALL_STATE(954)] = 56858, - [SMALL_STATE(955)] = 56903, - [SMALL_STATE(956)] = 56944, - [SMALL_STATE(957)] = 56985, - [SMALL_STATE(958)] = 57026, - [SMALL_STATE(959)] = 57067, - [SMALL_STATE(960)] = 57108, - [SMALL_STATE(961)] = 57149, - [SMALL_STATE(962)] = 57190, - [SMALL_STATE(963)] = 57231, - [SMALL_STATE(964)] = 57272, - [SMALL_STATE(965)] = 57313, - [SMALL_STATE(966)] = 57354, - [SMALL_STATE(967)] = 57395, - [SMALL_STATE(968)] = 57436, - [SMALL_STATE(969)] = 57477, - [SMALL_STATE(970)] = 57556, - [SMALL_STATE(971)] = 57597, - [SMALL_STATE(972)] = 57642, - [SMALL_STATE(973)] = 57717, - [SMALL_STATE(974)] = 57796, - [SMALL_STATE(975)] = 57837, - [SMALL_STATE(976)] = 57878, - [SMALL_STATE(977)] = 57919, - [SMALL_STATE(978)] = 57960, - [SMALL_STATE(979)] = 58001, - [SMALL_STATE(980)] = 58042, - [SMALL_STATE(981)] = 58121, - [SMALL_STATE(982)] = 58162, - [SMALL_STATE(983)] = 58203, - [SMALL_STATE(984)] = 58244, - [SMALL_STATE(985)] = 58285, - [SMALL_STATE(986)] = 58358, - [SMALL_STATE(987)] = 58428, - [SMALL_STATE(988)] = 58498, - [SMALL_STATE(989)] = 58560, - [SMALL_STATE(990)] = 58622, - [SMALL_STATE(991)] = 58661, - [SMALL_STATE(992)] = 58700, - [SMALL_STATE(993)] = 58739, - [SMALL_STATE(994)] = 58778, - [SMALL_STATE(995)] = 58808, - [SMALL_STATE(996)] = 58861, - [SMALL_STATE(997)] = 58896, - [SMALL_STATE(998)] = 58925, - [SMALL_STATE(999)] = 58950, - [SMALL_STATE(1000)] = 58975, - [SMALL_STATE(1001)] = 59012, - [SMALL_STATE(1002)] = 59037, - [SMALL_STATE(1003)] = 59062, - [SMALL_STATE(1004)] = 59099, - [SMALL_STATE(1005)] = 59128, - [SMALL_STATE(1006)] = 59165, - [SMALL_STATE(1007)] = 59200, - [SMALL_STATE(1008)] = 59253, - [SMALL_STATE(1009)] = 59290, - [SMALL_STATE(1010)] = 59343, - [SMALL_STATE(1011)] = 59377, - [SMALL_STATE(1012)] = 59411, - [SMALL_STATE(1013)] = 59439, - [SMALL_STATE(1014)] = 59485, - [SMALL_STATE(1015)] = 59528, - [SMALL_STATE(1016)] = 59571, - [SMALL_STATE(1017)] = 59614, - [SMALL_STATE(1018)] = 59645, - [SMALL_STATE(1019)] = 59688, - [SMALL_STATE(1020)] = 59731, - [SMALL_STATE(1021)] = 59774, - [SMALL_STATE(1022)] = 59817, - [SMALL_STATE(1023)] = 59857, - [SMALL_STATE(1024)] = 59901, - [SMALL_STATE(1025)] = 59938, - [SMALL_STATE(1026)] = 59975, - [SMALL_STATE(1027)] = 60000, - [SMALL_STATE(1028)] = 60037, - [SMALL_STATE(1029)] = 60074, - [SMALL_STATE(1030)] = 60108, - [SMALL_STATE(1031)] = 60142, - [SMALL_STATE(1032)] = 60163, - [SMALL_STATE(1033)] = 60184, - [SMALL_STATE(1034)] = 60206, - [SMALL_STATE(1035)] = 60237, - [SMALL_STATE(1036)] = 60258, - [SMALL_STATE(1037)] = 60281, - [SMALL_STATE(1038)] = 60312, - [SMALL_STATE(1039)] = 60343, - [SMALL_STATE(1040)] = 60374, - [SMALL_STATE(1041)] = 60405, - [SMALL_STATE(1042)] = 60442, - [SMALL_STATE(1043)] = 60473, - [SMALL_STATE(1044)] = 60504, - [SMALL_STATE(1045)] = 60535, - [SMALL_STATE(1046)] = 60566, - [SMALL_STATE(1047)] = 60597, - [SMALL_STATE(1048)] = 60628, - [SMALL_STATE(1049)] = 60659, - [SMALL_STATE(1050)] = 60690, - [SMALL_STATE(1051)] = 60721, - [SMALL_STATE(1052)] = 60752, - [SMALL_STATE(1053)] = 60783, - [SMALL_STATE(1054)] = 60814, - [SMALL_STATE(1055)] = 60845, - [SMALL_STATE(1056)] = 60882, - [SMALL_STATE(1057)] = 60899, - [SMALL_STATE(1058)] = 60936, - [SMALL_STATE(1059)] = 60973, - [SMALL_STATE(1060)] = 61010, - [SMALL_STATE(1061)] = 61033, - [SMALL_STATE(1062)] = 61054, - [SMALL_STATE(1063)] = 61085, - [SMALL_STATE(1064)] = 61107, - [SMALL_STATE(1065)] = 61141, - [SMALL_STATE(1066)] = 61165, - [SMALL_STATE(1067)] = 61187, - [SMALL_STATE(1068)] = 61209, - [SMALL_STATE(1069)] = 61243, - [SMALL_STATE(1070)] = 61265, - [SMALL_STATE(1071)] = 61299, - [SMALL_STATE(1072)] = 61333, - [SMALL_STATE(1073)] = 61357, - [SMALL_STATE(1074)] = 61379, - [SMALL_STATE(1075)] = 61399, - [SMALL_STATE(1076)] = 61433, - [SMALL_STATE(1077)] = 61453, - [SMALL_STATE(1078)] = 61471, - [SMALL_STATE(1079)] = 61491, - [SMALL_STATE(1080)] = 61525, - [SMALL_STATE(1081)] = 61547, - [SMALL_STATE(1082)] = 61567, - [SMALL_STATE(1083)] = 61591, - [SMALL_STATE(1084)] = 61625, - [SMALL_STATE(1085)] = 61659, - [SMALL_STATE(1086)] = 61693, - [SMALL_STATE(1087)] = 61727, - [SMALL_STATE(1088)] = 61761, - [SMALL_STATE(1089)] = 61779, - [SMALL_STATE(1090)] = 61797, - [SMALL_STATE(1091)] = 61831, - [SMALL_STATE(1092)] = 61854, - [SMALL_STATE(1093)] = 61873, - [SMALL_STATE(1094)] = 61892, - [SMALL_STATE(1095)] = 61913, - [SMALL_STATE(1096)] = 61936, - [SMALL_STATE(1097)] = 61961, - [SMALL_STATE(1098)] = 61980, - [SMALL_STATE(1099)] = 61999, - [SMALL_STATE(1100)] = 62018, - [SMALL_STATE(1101)] = 62037, - [SMALL_STATE(1102)] = 62060, - [SMALL_STATE(1103)] = 62085, - [SMALL_STATE(1104)] = 62099, - [SMALL_STATE(1105)] = 62113, - [SMALL_STATE(1106)] = 62127, - [SMALL_STATE(1107)] = 62141, - [SMALL_STATE(1108)] = 62155, - [SMALL_STATE(1109)] = 62169, - [SMALL_STATE(1110)] = 62183, - [SMALL_STATE(1111)] = 62197, - [SMALL_STATE(1112)] = 62219, - [SMALL_STATE(1113)] = 62237, - [SMALL_STATE(1114)] = 62255, - [SMALL_STATE(1115)] = 62269, - [SMALL_STATE(1116)] = 62283, - [SMALL_STATE(1117)] = 62297, - [SMALL_STATE(1118)] = 62315, - [SMALL_STATE(1119)] = 62329, - [SMALL_STATE(1120)] = 62347, - [SMALL_STATE(1121)] = 62367, - [SMALL_STATE(1122)] = 62385, - [SMALL_STATE(1123)] = 62401, - [SMALL_STATE(1124)] = 62419, - [SMALL_STATE(1125)] = 62439, - [SMALL_STATE(1126)] = 62459, - [SMALL_STATE(1127)] = 62477, - [SMALL_STATE(1128)] = 62501, - [SMALL_STATE(1129)] = 62525, - [SMALL_STATE(1130)] = 62539, - [SMALL_STATE(1131)] = 62553, - [SMALL_STATE(1132)] = 62573, - [SMALL_STATE(1133)] = 62587, - [SMALL_STATE(1134)] = 62601, - [SMALL_STATE(1135)] = 62627, - [SMALL_STATE(1136)] = 62649, - [SMALL_STATE(1137)] = 62663, - [SMALL_STATE(1138)] = 62677, - [SMALL_STATE(1139)] = 62691, - [SMALL_STATE(1140)] = 62707, - [SMALL_STATE(1141)] = 62721, - [SMALL_STATE(1142)] = 62739, - [SMALL_STATE(1143)] = 62759, - [SMALL_STATE(1144)] = 62779, - [SMALL_STATE(1145)] = 62803, - [SMALL_STATE(1146)] = 62823, - [SMALL_STATE(1147)] = 62839, - [SMALL_STATE(1148)] = 62857, - [SMALL_STATE(1149)] = 62871, - [SMALL_STATE(1150)] = 62893, - [SMALL_STATE(1151)] = 62907, - [SMALL_STATE(1152)] = 62927, - [SMALL_STATE(1153)] = 62947, - [SMALL_STATE(1154)] = 62967, - [SMALL_STATE(1155)] = 62987, - [SMALL_STATE(1156)] = 63007, - [SMALL_STATE(1157)] = 63021, - [SMALL_STATE(1158)] = 63039, - [SMALL_STATE(1159)] = 63057, - [SMALL_STATE(1160)] = 63077, - [SMALL_STATE(1161)] = 63095, - [SMALL_STATE(1162)] = 63111, - [SMALL_STATE(1163)] = 63129, - [SMALL_STATE(1164)] = 63149, - [SMALL_STATE(1165)] = 63169, - [SMALL_STATE(1166)] = 63187, - [SMALL_STATE(1167)] = 63205, - [SMALL_STATE(1168)] = 63219, - [SMALL_STATE(1169)] = 63233, - [SMALL_STATE(1170)] = 63247, - [SMALL_STATE(1171)] = 63272, - [SMALL_STATE(1172)] = 63293, - [SMALL_STATE(1173)] = 63306, - [SMALL_STATE(1174)] = 63319, - [SMALL_STATE(1175)] = 63344, - [SMALL_STATE(1176)] = 63365, - [SMALL_STATE(1177)] = 63388, - [SMALL_STATE(1178)] = 63411, - [SMALL_STATE(1179)] = 63430, - [SMALL_STATE(1180)] = 63453, - [SMALL_STATE(1181)] = 63472, - [SMALL_STATE(1182)] = 63495, - [SMALL_STATE(1183)] = 63518, - [SMALL_STATE(1184)] = 63543, - [SMALL_STATE(1185)] = 63562, - [SMALL_STATE(1186)] = 63581, - [SMALL_STATE(1187)] = 63594, - [SMALL_STATE(1188)] = 63611, - [SMALL_STATE(1189)] = 63630, - [SMALL_STATE(1190)] = 63643, - [SMALL_STATE(1191)] = 63668, - [SMALL_STATE(1192)] = 63687, - [SMALL_STATE(1193)] = 63712, - [SMALL_STATE(1194)] = 63731, - [SMALL_STATE(1195)] = 63750, - [SMALL_STATE(1196)] = 63773, - [SMALL_STATE(1197)] = 63792, - [SMALL_STATE(1198)] = 63809, - [SMALL_STATE(1199)] = 63824, - [SMALL_STATE(1200)] = 63849, - [SMALL_STATE(1201)] = 63866, - [SMALL_STATE(1202)] = 63885, - [SMALL_STATE(1203)] = 63904, - [SMALL_STATE(1204)] = 63929, - [SMALL_STATE(1205)] = 63954, - [SMALL_STATE(1206)] = 63975, - [SMALL_STATE(1207)] = 63998, - [SMALL_STATE(1208)] = 64021, - [SMALL_STATE(1209)] = 64034, - [SMALL_STATE(1210)] = 64055, - [SMALL_STATE(1211)] = 64080, - [SMALL_STATE(1212)] = 64093, - [SMALL_STATE(1213)] = 64112, - [SMALL_STATE(1214)] = 64133, - [SMALL_STATE(1215)] = 64158, - [SMALL_STATE(1216)] = 64173, - [SMALL_STATE(1217)] = 64196, - [SMALL_STATE(1218)] = 64212, - [SMALL_STATE(1219)] = 64228, - [SMALL_STATE(1220)] = 64244, - [SMALL_STATE(1221)] = 64260, - [SMALL_STATE(1222)] = 64272, - [SMALL_STATE(1223)] = 64288, - [SMALL_STATE(1224)] = 64308, - [SMALL_STATE(1225)] = 64324, - [SMALL_STATE(1226)] = 64342, - [SMALL_STATE(1227)] = 64356, - [SMALL_STATE(1228)] = 64376, - [SMALL_STATE(1229)] = 64392, - [SMALL_STATE(1230)] = 64410, - [SMALL_STATE(1231)] = 64424, - [SMALL_STATE(1232)] = 64440, - [SMALL_STATE(1233)] = 64462, - [SMALL_STATE(1234)] = 64478, - [SMALL_STATE(1235)] = 64500, - [SMALL_STATE(1236)] = 64518, - [SMALL_STATE(1237)] = 64538, - [SMALL_STATE(1238)] = 64560, - [SMALL_STATE(1239)] = 64582, - [SMALL_STATE(1240)] = 64594, - [SMALL_STATE(1241)] = 64612, - [SMALL_STATE(1242)] = 64634, - [SMALL_STATE(1243)] = 64652, - [SMALL_STATE(1244)] = 64670, - [SMALL_STATE(1245)] = 64688, - [SMALL_STATE(1246)] = 64710, - [SMALL_STATE(1247)] = 64732, - [SMALL_STATE(1248)] = 64748, - [SMALL_STATE(1249)] = 64768, - [SMALL_STATE(1250)] = 64784, - [SMALL_STATE(1251)] = 64800, - [SMALL_STATE(1252)] = 64814, - [SMALL_STATE(1253)] = 64828, - [SMALL_STATE(1254)] = 64846, - [SMALL_STATE(1255)] = 64860, - [SMALL_STATE(1256)] = 64874, - [SMALL_STATE(1257)] = 64894, - [SMALL_STATE(1258)] = 64910, - [SMALL_STATE(1259)] = 64927, - [SMALL_STATE(1260)] = 64938, - [SMALL_STATE(1261)] = 64955, - [SMALL_STATE(1262)] = 64972, - [SMALL_STATE(1263)] = 64983, - [SMALL_STATE(1264)] = 65000, - [SMALL_STATE(1265)] = 65017, - [SMALL_STATE(1266)] = 65034, - [SMALL_STATE(1267)] = 65045, - [SMALL_STATE(1268)] = 65060, - [SMALL_STATE(1269)] = 65077, - [SMALL_STATE(1270)] = 65096, - [SMALL_STATE(1271)] = 65113, - [SMALL_STATE(1272)] = 65132, - [SMALL_STATE(1273)] = 65147, - [SMALL_STATE(1274)] = 65166, - [SMALL_STATE(1275)] = 65183, - [SMALL_STATE(1276)] = 65200, - [SMALL_STATE(1277)] = 65217, - [SMALL_STATE(1278)] = 65234, - [SMALL_STATE(1279)] = 65249, - [SMALL_STATE(1280)] = 65268, - [SMALL_STATE(1281)] = 65285, - [SMALL_STATE(1282)] = 65302, - [SMALL_STATE(1283)] = 65319, - [SMALL_STATE(1284)] = 65338, - [SMALL_STATE(1285)] = 65353, - [SMALL_STATE(1286)] = 65370, - [SMALL_STATE(1287)] = 65385, - [SMALL_STATE(1288)] = 65400, - [SMALL_STATE(1289)] = 65419, - [SMALL_STATE(1290)] = 65436, - [SMALL_STATE(1291)] = 65451, - [SMALL_STATE(1292)] = 65470, - [SMALL_STATE(1293)] = 65489, - [SMALL_STATE(1294)] = 65500, - [SMALL_STATE(1295)] = 65511, - [SMALL_STATE(1296)] = 65528, - [SMALL_STATE(1297)] = 65544, - [SMALL_STATE(1298)] = 65558, - [SMALL_STATE(1299)] = 65572, - [SMALL_STATE(1300)] = 65588, - [SMALL_STATE(1301)] = 65604, - [SMALL_STATE(1302)] = 65620, - [SMALL_STATE(1303)] = 65634, - [SMALL_STATE(1304)] = 65648, - [SMALL_STATE(1305)] = 65662, - [SMALL_STATE(1306)] = 65678, - [SMALL_STATE(1307)] = 65694, - [SMALL_STATE(1308)] = 65710, - [SMALL_STATE(1309)] = 65726, - [SMALL_STATE(1310)] = 65742, - [SMALL_STATE(1311)] = 65756, - [SMALL_STATE(1312)] = 65770, - [SMALL_STATE(1313)] = 65786, - [SMALL_STATE(1314)] = 65802, - [SMALL_STATE(1315)] = 65816, - [SMALL_STATE(1316)] = 65830, - [SMALL_STATE(1317)] = 65846, - [SMALL_STATE(1318)] = 65856, - [SMALL_STATE(1319)] = 65872, - [SMALL_STATE(1320)] = 65888, - [SMALL_STATE(1321)] = 65902, - [SMALL_STATE(1322)] = 65916, - [SMALL_STATE(1323)] = 65930, - [SMALL_STATE(1324)] = 65944, - [SMALL_STATE(1325)] = 65958, - [SMALL_STATE(1326)] = 65970, - [SMALL_STATE(1327)] = 65982, - [SMALL_STATE(1328)] = 65998, - [SMALL_STATE(1329)] = 66012, - [SMALL_STATE(1330)] = 66026, - [SMALL_STATE(1331)] = 66040, - [SMALL_STATE(1332)] = 66056, - [SMALL_STATE(1333)] = 66072, - [SMALL_STATE(1334)] = 66088, - [SMALL_STATE(1335)] = 66104, - [SMALL_STATE(1336)] = 66120, - [SMALL_STATE(1337)] = 66136, - [SMALL_STATE(1338)] = 66152, - [SMALL_STATE(1339)] = 66166, - [SMALL_STATE(1340)] = 66182, - [SMALL_STATE(1341)] = 66196, - [SMALL_STATE(1342)] = 66206, - [SMALL_STATE(1343)] = 66220, - [SMALL_STATE(1344)] = 66236, - [SMALL_STATE(1345)] = 66246, - [SMALL_STATE(1346)] = 66262, - [SMALL_STATE(1347)] = 66272, - [SMALL_STATE(1348)] = 66288, - [SMALL_STATE(1349)] = 66298, - [SMALL_STATE(1350)] = 66314, - [SMALL_STATE(1351)] = 66328, - [SMALL_STATE(1352)] = 66344, - [SMALL_STATE(1353)] = 66360, - [SMALL_STATE(1354)] = 66374, - [SMALL_STATE(1355)] = 66388, - [SMALL_STATE(1356)] = 66404, - [SMALL_STATE(1357)] = 66420, - [SMALL_STATE(1358)] = 66436, - [SMALL_STATE(1359)] = 66452, - [SMALL_STATE(1360)] = 66468, - [SMALL_STATE(1361)] = 66482, - [SMALL_STATE(1362)] = 66498, - [SMALL_STATE(1363)] = 66514, - [SMALL_STATE(1364)] = 66528, - [SMALL_STATE(1365)] = 66544, - [SMALL_STATE(1366)] = 66558, - [SMALL_STATE(1367)] = 66574, - [SMALL_STATE(1368)] = 66588, - [SMALL_STATE(1369)] = 66602, - [SMALL_STATE(1370)] = 66618, - [SMALL_STATE(1371)] = 66632, - [SMALL_STATE(1372)] = 66646, - [SMALL_STATE(1373)] = 66660, - [SMALL_STATE(1374)] = 66674, - [SMALL_STATE(1375)] = 66688, - [SMALL_STATE(1376)] = 66704, - [SMALL_STATE(1377)] = 66720, - [SMALL_STATE(1378)] = 66734, - [SMALL_STATE(1379)] = 66744, - [SMALL_STATE(1380)] = 66757, - [SMALL_STATE(1381)] = 66766, - [SMALL_STATE(1382)] = 66775, - [SMALL_STATE(1383)] = 66788, - [SMALL_STATE(1384)] = 66797, - [SMALL_STATE(1385)] = 66810, - [SMALL_STATE(1386)] = 66823, - [SMALL_STATE(1387)] = 66836, - [SMALL_STATE(1388)] = 66849, - [SMALL_STATE(1389)] = 66858, - [SMALL_STATE(1390)] = 66867, - [SMALL_STATE(1391)] = 66880, - [SMALL_STATE(1392)] = 66889, - [SMALL_STATE(1393)] = 66900, - [SMALL_STATE(1394)] = 66913, - [SMALL_STATE(1395)] = 66926, - [SMALL_STATE(1396)] = 66939, - [SMALL_STATE(1397)] = 66952, - [SMALL_STATE(1398)] = 66965, - [SMALL_STATE(1399)] = 66978, - [SMALL_STATE(1400)] = 66991, - [SMALL_STATE(1401)] = 67004, - [SMALL_STATE(1402)] = 67017, - [SMALL_STATE(1403)] = 67030, - [SMALL_STATE(1404)] = 67043, - [SMALL_STATE(1405)] = 67056, - [SMALL_STATE(1406)] = 67069, - [SMALL_STATE(1407)] = 67082, - [SMALL_STATE(1408)] = 67095, - [SMALL_STATE(1409)] = 67108, - [SMALL_STATE(1410)] = 67121, - [SMALL_STATE(1411)] = 67134, - [SMALL_STATE(1412)] = 67147, - [SMALL_STATE(1413)] = 67160, - [SMALL_STATE(1414)] = 67173, - [SMALL_STATE(1415)] = 67184, - [SMALL_STATE(1416)] = 67197, - [SMALL_STATE(1417)] = 67210, - [SMALL_STATE(1418)] = 67223, - [SMALL_STATE(1419)] = 67236, - [SMALL_STATE(1420)] = 67249, - [SMALL_STATE(1421)] = 67262, - [SMALL_STATE(1422)] = 67275, - [SMALL_STATE(1423)] = 67288, - [SMALL_STATE(1424)] = 67301, - [SMALL_STATE(1425)] = 67314, - [SMALL_STATE(1426)] = 67327, - [SMALL_STATE(1427)] = 67340, - [SMALL_STATE(1428)] = 67353, - [SMALL_STATE(1429)] = 67366, - [SMALL_STATE(1430)] = 67375, - [SMALL_STATE(1431)] = 67388, - [SMALL_STATE(1432)] = 67401, - [SMALL_STATE(1433)] = 67414, - [SMALL_STATE(1434)] = 67427, - [SMALL_STATE(1435)] = 67440, - [SMALL_STATE(1436)] = 67453, - [SMALL_STATE(1437)] = 67466, - [SMALL_STATE(1438)] = 67479, - [SMALL_STATE(1439)] = 67492, - [SMALL_STATE(1440)] = 67505, - [SMALL_STATE(1441)] = 67518, - [SMALL_STATE(1442)] = 67531, - [SMALL_STATE(1443)] = 67544, - [SMALL_STATE(1444)] = 67553, - [SMALL_STATE(1445)] = 67566, - [SMALL_STATE(1446)] = 67579, - [SMALL_STATE(1447)] = 67590, - [SMALL_STATE(1448)] = 67603, - [SMALL_STATE(1449)] = 67616, - [SMALL_STATE(1450)] = 67629, - [SMALL_STATE(1451)] = 67642, - [SMALL_STATE(1452)] = 67651, - [SMALL_STATE(1453)] = 67664, - [SMALL_STATE(1454)] = 67677, - [SMALL_STATE(1455)] = 67686, - [SMALL_STATE(1456)] = 67699, - [SMALL_STATE(1457)] = 67712, - [SMALL_STATE(1458)] = 67725, - [SMALL_STATE(1459)] = 67736, - [SMALL_STATE(1460)] = 67749, - [SMALL_STATE(1461)] = 67762, - [SMALL_STATE(1462)] = 67775, - [SMALL_STATE(1463)] = 67788, - [SMALL_STATE(1464)] = 67801, - [SMALL_STATE(1465)] = 67812, - [SMALL_STATE(1466)] = 67823, - [SMALL_STATE(1467)] = 67836, - [SMALL_STATE(1468)] = 67849, - [SMALL_STATE(1469)] = 67862, - [SMALL_STATE(1470)] = 67875, - [SMALL_STATE(1471)] = 67888, - [SMALL_STATE(1472)] = 67901, - [SMALL_STATE(1473)] = 67914, - [SMALL_STATE(1474)] = 67925, - [SMALL_STATE(1475)] = 67938, - [SMALL_STATE(1476)] = 67951, - [SMALL_STATE(1477)] = 67962, - [SMALL_STATE(1478)] = 67975, - [SMALL_STATE(1479)] = 67988, - [SMALL_STATE(1480)] = 68001, - [SMALL_STATE(1481)] = 68014, - [SMALL_STATE(1482)] = 68023, - [SMALL_STATE(1483)] = 68036, - [SMALL_STATE(1484)] = 68049, - [SMALL_STATE(1485)] = 68062, - [SMALL_STATE(1486)] = 68075, - [SMALL_STATE(1487)] = 68084, - [SMALL_STATE(1488)] = 68097, - [SMALL_STATE(1489)] = 68110, - [SMALL_STATE(1490)] = 68123, - [SMALL_STATE(1491)] = 68136, - [SMALL_STATE(1492)] = 68145, - [SMALL_STATE(1493)] = 68156, - [SMALL_STATE(1494)] = 68169, - [SMALL_STATE(1495)] = 68178, - [SMALL_STATE(1496)] = 68187, - [SMALL_STATE(1497)] = 68200, - [SMALL_STATE(1498)] = 68213, - [SMALL_STATE(1499)] = 68226, - [SMALL_STATE(1500)] = 68239, - [SMALL_STATE(1501)] = 68250, - [SMALL_STATE(1502)] = 68263, - [SMALL_STATE(1503)] = 68276, - [SMALL_STATE(1504)] = 68289, - [SMALL_STATE(1505)] = 68300, - [SMALL_STATE(1506)] = 68313, - [SMALL_STATE(1507)] = 68326, - [SMALL_STATE(1508)] = 68339, - [SMALL_STATE(1509)] = 68352, - [SMALL_STATE(1510)] = 68365, - [SMALL_STATE(1511)] = 68376, - [SMALL_STATE(1512)] = 68389, - [SMALL_STATE(1513)] = 68399, - [SMALL_STATE(1514)] = 68407, - [SMALL_STATE(1515)] = 68417, - [SMALL_STATE(1516)] = 68425, - [SMALL_STATE(1517)] = 68433, - [SMALL_STATE(1518)] = 68441, - [SMALL_STATE(1519)] = 68451, - [SMALL_STATE(1520)] = 68459, - [SMALL_STATE(1521)] = 68469, - [SMALL_STATE(1522)] = 68477, - [SMALL_STATE(1523)] = 68485, - [SMALL_STATE(1524)] = 68493, - [SMALL_STATE(1525)] = 68501, - [SMALL_STATE(1526)] = 68509, - [SMALL_STATE(1527)] = 68517, - [SMALL_STATE(1528)] = 68525, - [SMALL_STATE(1529)] = 68533, - [SMALL_STATE(1530)] = 68543, - [SMALL_STATE(1531)] = 68551, - [SMALL_STATE(1532)] = 68561, - [SMALL_STATE(1533)] = 68569, - [SMALL_STATE(1534)] = 68577, - [SMALL_STATE(1535)] = 68585, - [SMALL_STATE(1536)] = 68593, - [SMALL_STATE(1537)] = 68601, - [SMALL_STATE(1538)] = 68609, - [SMALL_STATE(1539)] = 68619, - [SMALL_STATE(1540)] = 68629, - [SMALL_STATE(1541)] = 68639, - [SMALL_STATE(1542)] = 68649, - [SMALL_STATE(1543)] = 68657, - [SMALL_STATE(1544)] = 68667, - [SMALL_STATE(1545)] = 68675, - [SMALL_STATE(1546)] = 68685, - [SMALL_STATE(1547)] = 68695, - [SMALL_STATE(1548)] = 68705, - [SMALL_STATE(1549)] = 68715, - [SMALL_STATE(1550)] = 68723, - [SMALL_STATE(1551)] = 68733, - [SMALL_STATE(1552)] = 68741, - [SMALL_STATE(1553)] = 68749, - [SMALL_STATE(1554)] = 68757, - [SMALL_STATE(1555)] = 68765, - [SMALL_STATE(1556)] = 68775, - [SMALL_STATE(1557)] = 68785, - [SMALL_STATE(1558)] = 68795, - [SMALL_STATE(1559)] = 68805, - [SMALL_STATE(1560)] = 68813, - [SMALL_STATE(1561)] = 68823, - [SMALL_STATE(1562)] = 68833, - [SMALL_STATE(1563)] = 68843, - [SMALL_STATE(1564)] = 68851, - [SMALL_STATE(1565)] = 68859, - [SMALL_STATE(1566)] = 68869, - [SMALL_STATE(1567)] = 68877, - [SMALL_STATE(1568)] = 68885, - [SMALL_STATE(1569)] = 68895, - [SMALL_STATE(1570)] = 68903, - [SMALL_STATE(1571)] = 68911, - [SMALL_STATE(1572)] = 68919, - [SMALL_STATE(1573)] = 68927, - [SMALL_STATE(1574)] = 68935, - [SMALL_STATE(1575)] = 68943, - [SMALL_STATE(1576)] = 68951, - [SMALL_STATE(1577)] = 68959, - [SMALL_STATE(1578)] = 68967, - [SMALL_STATE(1579)] = 68975, - [SMALL_STATE(1580)] = 68985, - [SMALL_STATE(1581)] = 68993, - [SMALL_STATE(1582)] = 69001, - [SMALL_STATE(1583)] = 69011, - [SMALL_STATE(1584)] = 69021, - [SMALL_STATE(1585)] = 69031, - [SMALL_STATE(1586)] = 69041, - [SMALL_STATE(1587)] = 69049, - [SMALL_STATE(1588)] = 69059, - [SMALL_STATE(1589)] = 69067, - [SMALL_STATE(1590)] = 69075, - [SMALL_STATE(1591)] = 69083, - [SMALL_STATE(1592)] = 69091, - [SMALL_STATE(1593)] = 69098, - [SMALL_STATE(1594)] = 69105, - [SMALL_STATE(1595)] = 69112, - [SMALL_STATE(1596)] = 69119, - [SMALL_STATE(1597)] = 69126, - [SMALL_STATE(1598)] = 69133, - [SMALL_STATE(1599)] = 69140, - [SMALL_STATE(1600)] = 69147, - [SMALL_STATE(1601)] = 69154, - [SMALL_STATE(1602)] = 69161, - [SMALL_STATE(1603)] = 69168, - [SMALL_STATE(1604)] = 69175, - [SMALL_STATE(1605)] = 69182, - [SMALL_STATE(1606)] = 69189, - [SMALL_STATE(1607)] = 69196, - [SMALL_STATE(1608)] = 69203, - [SMALL_STATE(1609)] = 69210, - [SMALL_STATE(1610)] = 69217, - [SMALL_STATE(1611)] = 69224, - [SMALL_STATE(1612)] = 69231, - [SMALL_STATE(1613)] = 69238, - [SMALL_STATE(1614)] = 69245, - [SMALL_STATE(1615)] = 69252, - [SMALL_STATE(1616)] = 69259, - [SMALL_STATE(1617)] = 69266, - [SMALL_STATE(1618)] = 69273, - [SMALL_STATE(1619)] = 69280, - [SMALL_STATE(1620)] = 69287, - [SMALL_STATE(1621)] = 69294, - [SMALL_STATE(1622)] = 69301, - [SMALL_STATE(1623)] = 69308, - [SMALL_STATE(1624)] = 69315, - [SMALL_STATE(1625)] = 69322, - [SMALL_STATE(1626)] = 69329, - [SMALL_STATE(1627)] = 69336, - [SMALL_STATE(1628)] = 69343, - [SMALL_STATE(1629)] = 69350, - [SMALL_STATE(1630)] = 69357, - [SMALL_STATE(1631)] = 69364, - [SMALL_STATE(1632)] = 69371, - [SMALL_STATE(1633)] = 69378, - [SMALL_STATE(1634)] = 69385, - [SMALL_STATE(1635)] = 69392, - [SMALL_STATE(1636)] = 69399, - [SMALL_STATE(1637)] = 69406, - [SMALL_STATE(1638)] = 69413, - [SMALL_STATE(1639)] = 69420, - [SMALL_STATE(1640)] = 69427, - [SMALL_STATE(1641)] = 69434, - [SMALL_STATE(1642)] = 69441, - [SMALL_STATE(1643)] = 69448, - [SMALL_STATE(1644)] = 69455, - [SMALL_STATE(1645)] = 69462, - [SMALL_STATE(1646)] = 69469, - [SMALL_STATE(1647)] = 69476, - [SMALL_STATE(1648)] = 69483, - [SMALL_STATE(1649)] = 69490, - [SMALL_STATE(1650)] = 69497, - [SMALL_STATE(1651)] = 69504, - [SMALL_STATE(1652)] = 69511, - [SMALL_STATE(1653)] = 69518, - [SMALL_STATE(1654)] = 69525, - [SMALL_STATE(1655)] = 69532, - [SMALL_STATE(1656)] = 69539, - [SMALL_STATE(1657)] = 69546, - [SMALL_STATE(1658)] = 69553, - [SMALL_STATE(1659)] = 69560, - [SMALL_STATE(1660)] = 69567, - [SMALL_STATE(1661)] = 69574, - [SMALL_STATE(1662)] = 69581, - [SMALL_STATE(1663)] = 69588, - [SMALL_STATE(1664)] = 69595, - [SMALL_STATE(1665)] = 69602, - [SMALL_STATE(1666)] = 69609, - [SMALL_STATE(1667)] = 69616, - [SMALL_STATE(1668)] = 69623, - [SMALL_STATE(1669)] = 69630, - [SMALL_STATE(1670)] = 69637, - [SMALL_STATE(1671)] = 69644, - [SMALL_STATE(1672)] = 69651, - [SMALL_STATE(1673)] = 69658, - [SMALL_STATE(1674)] = 69665, - [SMALL_STATE(1675)] = 69672, - [SMALL_STATE(1676)] = 69679, - [SMALL_STATE(1677)] = 69686, - [SMALL_STATE(1678)] = 69693, - [SMALL_STATE(1679)] = 69700, - [SMALL_STATE(1680)] = 69707, - [SMALL_STATE(1681)] = 69714, - [SMALL_STATE(1682)] = 69721, - [SMALL_STATE(1683)] = 69728, - [SMALL_STATE(1684)] = 69735, - [SMALL_STATE(1685)] = 69742, - [SMALL_STATE(1686)] = 69749, - [SMALL_STATE(1687)] = 69756, - [SMALL_STATE(1688)] = 69763, - [SMALL_STATE(1689)] = 69770, - [SMALL_STATE(1690)] = 69777, - [SMALL_STATE(1691)] = 69784, - [SMALL_STATE(1692)] = 69791, - [SMALL_STATE(1693)] = 69798, - [SMALL_STATE(1694)] = 69805, - [SMALL_STATE(1695)] = 69812, - [SMALL_STATE(1696)] = 69819, - [SMALL_STATE(1697)] = 69826, - [SMALL_STATE(1698)] = 69833, - [SMALL_STATE(1699)] = 69840, - [SMALL_STATE(1700)] = 69847, - [SMALL_STATE(1701)] = 69854, - [SMALL_STATE(1702)] = 69861, - [SMALL_STATE(1703)] = 69868, - [SMALL_STATE(1704)] = 69875, - [SMALL_STATE(1705)] = 69882, - [SMALL_STATE(1706)] = 69889, - [SMALL_STATE(1707)] = 69896, - [SMALL_STATE(1708)] = 69903, - [SMALL_STATE(1709)] = 69910, - [SMALL_STATE(1710)] = 69917, - [SMALL_STATE(1711)] = 69924, - [SMALL_STATE(1712)] = 69931, - [SMALL_STATE(1713)] = 69938, - [SMALL_STATE(1714)] = 69945, - [SMALL_STATE(1715)] = 69952, - [SMALL_STATE(1716)] = 69959, - [SMALL_STATE(1717)] = 69966, - [SMALL_STATE(1718)] = 69973, - [SMALL_STATE(1719)] = 69980, - [SMALL_STATE(1720)] = 69987, - [SMALL_STATE(1721)] = 69994, - [SMALL_STATE(1722)] = 70001, - [SMALL_STATE(1723)] = 70008, - [SMALL_STATE(1724)] = 70015, - [SMALL_STATE(1725)] = 70022, - [SMALL_STATE(1726)] = 70029, - [SMALL_STATE(1727)] = 70036, - [SMALL_STATE(1728)] = 70043, - [SMALL_STATE(1729)] = 70050, - [SMALL_STATE(1730)] = 70057, - [SMALL_STATE(1731)] = 70064, - [SMALL_STATE(1732)] = 70071, - [SMALL_STATE(1733)] = 70078, + [SMALL_STATE(284)] = 13659, + [SMALL_STATE(285)] = 13761, + [SMALL_STATE(286)] = 13863, + [SMALL_STATE(287)] = 13965, + [SMALL_STATE(288)] = 14067, + [SMALL_STATE(289)] = 14169, + [SMALL_STATE(290)] = 14268, + [SMALL_STATE(291)] = 14367, + [SMALL_STATE(292)] = 14464, + [SMALL_STATE(293)] = 14563, + [SMALL_STATE(294)] = 14660, + [SMALL_STATE(295)] = 14759, + [SMALL_STATE(296)] = 14858, + [SMALL_STATE(297)] = 14955, + [SMALL_STATE(298)] = 15052, + [SMALL_STATE(299)] = 15149, + [SMALL_STATE(300)] = 15246, + [SMALL_STATE(301)] = 15343, + [SMALL_STATE(302)] = 15440, + [SMALL_STATE(303)] = 15537, + [SMALL_STATE(304)] = 15634, + [SMALL_STATE(305)] = 15733, + [SMALL_STATE(306)] = 15832, + [SMALL_STATE(307)] = 15931, + [SMALL_STATE(308)] = 16028, + [SMALL_STATE(309)] = 16125, + [SMALL_STATE(310)] = 16224, + [SMALL_STATE(311)] = 16321, + [SMALL_STATE(312)] = 16381, + [SMALL_STATE(313)] = 16441, + [SMALL_STATE(314)] = 16501, + [SMALL_STATE(315)] = 16565, + [SMALL_STATE(316)] = 16629, + [SMALL_STATE(317)] = 16689, + [SMALL_STATE(318)] = 16749, + [SMALL_STATE(319)] = 16809, + [SMALL_STATE(320)] = 16879, + [SMALL_STATE(321)] = 16949, + [SMALL_STATE(322)] = 17019, + [SMALL_STATE(323)] = 17089, + [SMALL_STATE(324)] = 17185, + [SMALL_STATE(325)] = 17249, + [SMALL_STATE(326)] = 17309, + [SMALL_STATE(327)] = 17369, + [SMALL_STATE(328)] = 17439, + [SMALL_STATE(329)] = 17499, + [SMALL_STATE(330)] = 17569, + [SMALL_STATE(331)] = 17629, + [SMALL_STATE(332)] = 17693, + [SMALL_STATE(333)] = 17763, + [SMALL_STATE(334)] = 17823, + [SMALL_STATE(335)] = 17883, + [SMALL_STATE(336)] = 17979, + [SMALL_STATE(337)] = 18075, + [SMALL_STATE(338)] = 18145, + [SMALL_STATE(339)] = 18238, + [SMALL_STATE(340)] = 18331, + [SMALL_STATE(341)] = 18424, + [SMALL_STATE(342)] = 18517, + [SMALL_STATE(343)] = 18610, + [SMALL_STATE(344)] = 18705, + [SMALL_STATE(345)] = 18798, + [SMALL_STATE(346)] = 18891, + [SMALL_STATE(347)] = 18984, + [SMALL_STATE(348)] = 19057, + [SMALL_STATE(349)] = 19150, + [SMALL_STATE(350)] = 19243, + [SMALL_STATE(351)] = 19308, + [SMALL_STATE(352)] = 19401, + [SMALL_STATE(353)] = 19494, + [SMALL_STATE(354)] = 19587, + [SMALL_STATE(355)] = 19680, + [SMALL_STATE(356)] = 19773, + [SMALL_STATE(357)] = 19866, + [SMALL_STATE(358)] = 19959, + [SMALL_STATE(359)] = 20052, + [SMALL_STATE(360)] = 20145, + [SMALL_STATE(361)] = 20238, + [SMALL_STATE(362)] = 20331, + [SMALL_STATE(363)] = 20424, + [SMALL_STATE(364)] = 20517, + [SMALL_STATE(365)] = 20610, + [SMALL_STATE(366)] = 20703, + [SMALL_STATE(367)] = 20796, + [SMALL_STATE(368)] = 20889, + [SMALL_STATE(369)] = 20982, + [SMALL_STATE(370)] = 21075, + [SMALL_STATE(371)] = 21168, + [SMALL_STATE(372)] = 21261, + [SMALL_STATE(373)] = 21354, + [SMALL_STATE(374)] = 21447, + [SMALL_STATE(375)] = 21540, + [SMALL_STATE(376)] = 21633, + [SMALL_STATE(377)] = 21726, + [SMALL_STATE(378)] = 21819, + [SMALL_STATE(379)] = 21912, + [SMALL_STATE(380)] = 22005, + [SMALL_STATE(381)] = 22098, + [SMALL_STATE(382)] = 22191, + [SMALL_STATE(383)] = 22284, + [SMALL_STATE(384)] = 22377, + [SMALL_STATE(385)] = 22470, + [SMALL_STATE(386)] = 22563, + [SMALL_STATE(387)] = 22656, + [SMALL_STATE(388)] = 22749, + [SMALL_STATE(389)] = 22842, + [SMALL_STATE(390)] = 22935, + [SMALL_STATE(391)] = 23028, + [SMALL_STATE(392)] = 23121, + [SMALL_STATE(393)] = 23186, + [SMALL_STATE(394)] = 23279, + [SMALL_STATE(395)] = 23372, + [SMALL_STATE(396)] = 23465, + [SMALL_STATE(397)] = 23558, + [SMALL_STATE(398)] = 23651, + [SMALL_STATE(399)] = 23744, + [SMALL_STATE(400)] = 23837, + [SMALL_STATE(401)] = 23930, + [SMALL_STATE(402)] = 24025, + [SMALL_STATE(403)] = 24118, + [SMALL_STATE(404)] = 24211, + [SMALL_STATE(405)] = 24304, + [SMALL_STATE(406)] = 24397, + [SMALL_STATE(407)] = 24490, + [SMALL_STATE(408)] = 24583, + [SMALL_STATE(409)] = 24676, + [SMALL_STATE(410)] = 24769, + [SMALL_STATE(411)] = 24862, + [SMALL_STATE(412)] = 24955, + [SMALL_STATE(413)] = 25048, + [SMALL_STATE(414)] = 25141, + [SMALL_STATE(415)] = 25234, + [SMALL_STATE(416)] = 25327, + [SMALL_STATE(417)] = 25420, + [SMALL_STATE(418)] = 25513, + [SMALL_STATE(419)] = 25606, + [SMALL_STATE(420)] = 25699, + [SMALL_STATE(421)] = 25792, + [SMALL_STATE(422)] = 25885, + [SMALL_STATE(423)] = 25978, + [SMALL_STATE(424)] = 26071, + [SMALL_STATE(425)] = 26164, + [SMALL_STATE(426)] = 26257, + [SMALL_STATE(427)] = 26350, + [SMALL_STATE(428)] = 26443, + [SMALL_STATE(429)] = 26536, + [SMALL_STATE(430)] = 26629, + [SMALL_STATE(431)] = 26722, + [SMALL_STATE(432)] = 26815, + [SMALL_STATE(433)] = 26908, + [SMALL_STATE(434)] = 27001, + [SMALL_STATE(435)] = 27094, + [SMALL_STATE(436)] = 27187, + [SMALL_STATE(437)] = 27280, + [SMALL_STATE(438)] = 27353, + [SMALL_STATE(439)] = 27446, + [SMALL_STATE(440)] = 27504, + [SMALL_STATE(441)] = 27566, + [SMALL_STATE(442)] = 27624, + [SMALL_STATE(443)] = 27682, + [SMALL_STATE(444)] = 27740, + [SMALL_STATE(445)] = 27802, + [SMALL_STATE(446)] = 27864, + [SMALL_STATE(447)] = 27922, + [SMALL_STATE(448)] = 27980, + [SMALL_STATE(449)] = 28038, + [SMALL_STATE(450)] = 28096, + [SMALL_STATE(451)] = 28154, + [SMALL_STATE(452)] = 28212, + [SMALL_STATE(453)] = 28282, + [SMALL_STATE(454)] = 28352, + [SMALL_STATE(455)] = 28410, + [SMALL_STATE(456)] = 28468, + [SMALL_STATE(457)] = 28526, + [SMALL_STATE(458)] = 28584, + [SMALL_STATE(459)] = 28642, + [SMALL_STATE(460)] = 28700, + [SMALL_STATE(461)] = 28758, + [SMALL_STATE(462)] = 28820, + [SMALL_STATE(463)] = 28878, + [SMALL_STATE(464)] = 28936, + [SMALL_STATE(465)] = 28994, + [SMALL_STATE(466)] = 29089, + [SMALL_STATE(467)] = 29182, + [SMALL_STATE(468)] = 29239, + [SMALL_STATE(469)] = 29300, + [SMALL_STATE(470)] = 29367, + [SMALL_STATE(471)] = 29430, + [SMALL_STATE(472)] = 29523, + [SMALL_STATE(473)] = 29580, + [SMALL_STATE(474)] = 29637, + [SMALL_STATE(475)] = 29698, + [SMALL_STATE(476)] = 29759, + [SMALL_STATE(477)] = 29820, + [SMALL_STATE(478)] = 29881, + [SMALL_STATE(479)] = 29942, + [SMALL_STATE(480)] = 29999, + [SMALL_STATE(481)] = 30060, + [SMALL_STATE(482)] = 30121, + [SMALL_STATE(483)] = 30182, + [SMALL_STATE(484)] = 30243, + [SMALL_STATE(485)] = 30304, + [SMALL_STATE(486)] = 30365, + [SMALL_STATE(487)] = 30426, + [SMALL_STATE(488)] = 30483, + [SMALL_STATE(489)] = 30544, + [SMALL_STATE(490)] = 30601, + [SMALL_STATE(491)] = 30662, + [SMALL_STATE(492)] = 30723, + [SMALL_STATE(493)] = 30779, + [SMALL_STATE(494)] = 30835, + [SMALL_STATE(495)] = 30899, + [SMALL_STATE(496)] = 30991, + [SMALL_STATE(497)] = 31047, + [SMALL_STATE(498)] = 31103, + [SMALL_STATE(499)] = 31159, + [SMALL_STATE(500)] = 31223, + [SMALL_STATE(501)] = 31279, + [SMALL_STATE(502)] = 31371, + [SMALL_STATE(503)] = 31427, + [SMALL_STATE(504)] = 31483, + [SMALL_STATE(505)] = 31539, + [SMALL_STATE(506)] = 31595, + [SMALL_STATE(507)] = 31687, + [SMALL_STATE(508)] = 31743, + [SMALL_STATE(509)] = 31799, + [SMALL_STATE(510)] = 31891, + [SMALL_STATE(511)] = 31983, + [SMALL_STATE(512)] = 32039, + [SMALL_STATE(513)] = 32095, + [SMALL_STATE(514)] = 32187, + [SMALL_STATE(515)] = 32242, + [SMALL_STATE(516)] = 32303, + [SMALL_STATE(517)] = 32358, + [SMALL_STATE(518)] = 32413, + [SMALL_STATE(519)] = 32468, + [SMALL_STATE(520)] = 32523, + [SMALL_STATE(521)] = 32578, + [SMALL_STATE(522)] = 32633, + [SMALL_STATE(523)] = 32688, + [SMALL_STATE(524)] = 32743, + [SMALL_STATE(525)] = 32804, + [SMALL_STATE(526)] = 32859, + [SMALL_STATE(527)] = 32914, + [SMALL_STATE(528)] = 33003, + [SMALL_STATE(529)] = 33058, + [SMALL_STATE(530)] = 33113, + [SMALL_STATE(531)] = 33168, + [SMALL_STATE(532)] = 33223, + [SMALL_STATE(533)] = 33278, + [SMALL_STATE(534)] = 33333, + [SMALL_STATE(535)] = 33388, + [SMALL_STATE(536)] = 33443, + [SMALL_STATE(537)] = 33498, + [SMALL_STATE(538)] = 33553, + [SMALL_STATE(539)] = 33608, + [SMALL_STATE(540)] = 33663, + [SMALL_STATE(541)] = 33718, + [SMALL_STATE(542)] = 33773, + [SMALL_STATE(543)] = 33828, + [SMALL_STATE(544)] = 33883, + [SMALL_STATE(545)] = 33938, + [SMALL_STATE(546)] = 33993, + [SMALL_STATE(547)] = 34048, + [SMALL_STATE(548)] = 34103, + [SMALL_STATE(549)] = 34158, + [SMALL_STATE(550)] = 34213, + [SMALL_STATE(551)] = 34268, + [SMALL_STATE(552)] = 34323, + [SMALL_STATE(553)] = 34378, + [SMALL_STATE(554)] = 34433, + [SMALL_STATE(555)] = 34488, + [SMALL_STATE(556)] = 34543, + [SMALL_STATE(557)] = 34598, + [SMALL_STATE(558)] = 34653, + [SMALL_STATE(559)] = 34708, + [SMALL_STATE(560)] = 34763, + [SMALL_STATE(561)] = 34818, + [SMALL_STATE(562)] = 34873, + [SMALL_STATE(563)] = 34928, + [SMALL_STATE(564)] = 34983, + [SMALL_STATE(565)] = 35038, + [SMALL_STATE(566)] = 35093, + [SMALL_STATE(567)] = 35148, + [SMALL_STATE(568)] = 35203, + [SMALL_STATE(569)] = 35258, + [SMALL_STATE(570)] = 35313, + [SMALL_STATE(571)] = 35368, + [SMALL_STATE(572)] = 35423, + [SMALL_STATE(573)] = 35478, + [SMALL_STATE(574)] = 35533, + [SMALL_STATE(575)] = 35588, + [SMALL_STATE(576)] = 35643, + [SMALL_STATE(577)] = 35698, + [SMALL_STATE(578)] = 35753, + [SMALL_STATE(579)] = 35808, + [SMALL_STATE(580)] = 35863, + [SMALL_STATE(581)] = 35918, + [SMALL_STATE(582)] = 35973, + [SMALL_STATE(583)] = 36028, + [SMALL_STATE(584)] = 36083, + [SMALL_STATE(585)] = 36138, + [SMALL_STATE(586)] = 36193, + [SMALL_STATE(587)] = 36248, + [SMALL_STATE(588)] = 36303, + [SMALL_STATE(589)] = 36358, + [SMALL_STATE(590)] = 36447, + [SMALL_STATE(591)] = 36502, + [SMALL_STATE(592)] = 36557, + [SMALL_STATE(593)] = 36612, + [SMALL_STATE(594)] = 36667, + [SMALL_STATE(595)] = 36722, + [SMALL_STATE(596)] = 36777, + [SMALL_STATE(597)] = 36832, + [SMALL_STATE(598)] = 36887, + [SMALL_STATE(599)] = 36942, + [SMALL_STATE(600)] = 36997, + [SMALL_STATE(601)] = 37052, + [SMALL_STATE(602)] = 37107, + [SMALL_STATE(603)] = 37162, + [SMALL_STATE(604)] = 37217, + [SMALL_STATE(605)] = 37272, + [SMALL_STATE(606)] = 37327, + [SMALL_STATE(607)] = 37382, + [SMALL_STATE(608)] = 37437, + [SMALL_STATE(609)] = 37492, + [SMALL_STATE(610)] = 37547, + [SMALL_STATE(611)] = 37602, + [SMALL_STATE(612)] = 37657, + [SMALL_STATE(613)] = 37712, + [SMALL_STATE(614)] = 37767, + [SMALL_STATE(615)] = 37828, + [SMALL_STATE(616)] = 37883, + [SMALL_STATE(617)] = 37938, + [SMALL_STATE(618)] = 38000, + [SMALL_STATE(619)] = 38062, + [SMALL_STATE(620)] = 38145, + [SMALL_STATE(621)] = 38222, + [SMALL_STATE(622)] = 38299, + [SMALL_STATE(623)] = 38376, + [SMALL_STATE(624)] = 38453, + [SMALL_STATE(625)] = 38530, + [SMALL_STATE(626)] = 38607, + [SMALL_STATE(627)] = 38681, + [SMALL_STATE(628)] = 38735, + [SMALL_STATE(629)] = 38809, + [SMALL_STATE(630)] = 38883, + [SMALL_STATE(631)] = 38957, + [SMALL_STATE(632)] = 39031, + [SMALL_STATE(633)] = 39109, + [SMALL_STATE(634)] = 39183, + [SMALL_STATE(635)] = 39257, + [SMALL_STATE(636)] = 39331, + [SMALL_STATE(637)] = 39405, + [SMALL_STATE(638)] = 39479, + [SMALL_STATE(639)] = 39553, + [SMALL_STATE(640)] = 39631, + [SMALL_STATE(641)] = 39705, + [SMALL_STATE(642)] = 39779, + [SMALL_STATE(643)] = 39853, + [SMALL_STATE(644)] = 39927, + [SMALL_STATE(645)] = 40001, + [SMALL_STATE(646)] = 40075, + [SMALL_STATE(647)] = 40149, + [SMALL_STATE(648)] = 40223, + [SMALL_STATE(649)] = 40297, + [SMALL_STATE(650)] = 40371, + [SMALL_STATE(651)] = 40445, + [SMALL_STATE(652)] = 40519, + [SMALL_STATE(653)] = 40593, + [SMALL_STATE(654)] = 40667, + [SMALL_STATE(655)] = 40741, + [SMALL_STATE(656)] = 40815, + [SMALL_STATE(657)] = 40889, + [SMALL_STATE(658)] = 40963, + [SMALL_STATE(659)] = 41037, + [SMALL_STATE(660)] = 41111, + [SMALL_STATE(661)] = 41185, + [SMALL_STATE(662)] = 41259, + [SMALL_STATE(663)] = 41333, + [SMALL_STATE(664)] = 41407, + [SMALL_STATE(665)] = 41481, + [SMALL_STATE(666)] = 41555, + [SMALL_STATE(667)] = 41629, + [SMALL_STATE(668)] = 41703, + [SMALL_STATE(669)] = 41777, + [SMALL_STATE(670)] = 41851, + [SMALL_STATE(671)] = 41925, + [SMALL_STATE(672)] = 41999, + [SMALL_STATE(673)] = 42073, + [SMALL_STATE(674)] = 42147, + [SMALL_STATE(675)] = 42221, + [SMALL_STATE(676)] = 42295, + [SMALL_STATE(677)] = 42369, + [SMALL_STATE(678)] = 42443, + [SMALL_STATE(679)] = 42517, + [SMALL_STATE(680)] = 42591, + [SMALL_STATE(681)] = 42665, + [SMALL_STATE(682)] = 42739, + [SMALL_STATE(683)] = 42813, + [SMALL_STATE(684)] = 42887, + [SMALL_STATE(685)] = 42961, + [SMALL_STATE(686)] = 43015, + [SMALL_STATE(687)] = 43089, + [SMALL_STATE(688)] = 43163, + [SMALL_STATE(689)] = 43237, + [SMALL_STATE(690)] = 43311, + [SMALL_STATE(691)] = 43365, + [SMALL_STATE(692)] = 43439, + [SMALL_STATE(693)] = 43513, + [SMALL_STATE(694)] = 43567, + [SMALL_STATE(695)] = 43621, + [SMALL_STATE(696)] = 43695, + [SMALL_STATE(697)] = 43769, + [SMALL_STATE(698)] = 43843, + [SMALL_STATE(699)] = 43897, + [SMALL_STATE(700)] = 43971, + [SMALL_STATE(701)] = 44019, + [SMALL_STATE(702)] = 44067, + [SMALL_STATE(703)] = 44115, + [SMALL_STATE(704)] = 44163, + [SMALL_STATE(705)] = 44244, + [SMALL_STATE(706)] = 44325, + [SMALL_STATE(707)] = 44372, + [SMALL_STATE(708)] = 44419, + [SMALL_STATE(709)] = 44466, + [SMALL_STATE(710)] = 44513, + [SMALL_STATE(711)] = 44560, + [SMALL_STATE(712)] = 44607, + [SMALL_STATE(713)] = 44654, + [SMALL_STATE(714)] = 44701, + [SMALL_STATE(715)] = 44748, + [SMALL_STATE(716)] = 44795, + [SMALL_STATE(717)] = 44842, + [SMALL_STATE(718)] = 44889, + [SMALL_STATE(719)] = 44936, + [SMALL_STATE(720)] = 44983, + [SMALL_STATE(721)] = 45030, + [SMALL_STATE(722)] = 45077, + [SMALL_STATE(723)] = 45124, + [SMALL_STATE(724)] = 45171, + [SMALL_STATE(725)] = 45218, + [SMALL_STATE(726)] = 45265, + [SMALL_STATE(727)] = 45312, + [SMALL_STATE(728)] = 45359, + [SMALL_STATE(729)] = 45406, + [SMALL_STATE(730)] = 45453, + [SMALL_STATE(731)] = 45500, + [SMALL_STATE(732)] = 45547, + [SMALL_STATE(733)] = 45594, + [SMALL_STATE(734)] = 45641, + [SMALL_STATE(735)] = 45688, + [SMALL_STATE(736)] = 45735, + [SMALL_STATE(737)] = 45782, + [SMALL_STATE(738)] = 45829, + [SMALL_STATE(739)] = 45876, + [SMALL_STATE(740)] = 45944, + [SMALL_STATE(741)] = 46014, + [SMALL_STATE(742)] = 46084, + [SMALL_STATE(743)] = 46152, + [SMALL_STATE(744)] = 46212, + [SMALL_STATE(745)] = 46268, + [SMALL_STATE(746)] = 46334, + [SMALL_STATE(747)] = 46398, + [SMALL_STATE(748)] = 46454, + [SMALL_STATE(749)] = 46510, + [SMALL_STATE(750)] = 46560, + [SMALL_STATE(751)] = 46610, + [SMALL_STATE(752)] = 46666, + [SMALL_STATE(753)] = 46728, + [SMALL_STATE(754)] = 46778, + [SMALL_STATE(755)] = 46828, + [SMALL_STATE(756)] = 46884, + [SMALL_STATE(757)] = 46946, + [SMALL_STATE(758)] = 47016, + [SMALL_STATE(759)] = 47076, + [SMALL_STATE(760)] = 47132, + [SMALL_STATE(761)] = 47198, + [SMALL_STATE(762)] = 47262, + [SMALL_STATE(763)] = 47332, + [SMALL_STATE(764)] = 47402, + [SMALL_STATE(765)] = 47472, + [SMALL_STATE(766)] = 47528, + [SMALL_STATE(767)] = 47584, + [SMALL_STATE(768)] = 47629, + [SMALL_STATE(769)] = 47678, + [SMALL_STATE(770)] = 47727, + [SMALL_STATE(771)] = 47776, + [SMALL_STATE(772)] = 47825, + [SMALL_STATE(773)] = 47874, + [SMALL_STATE(774)] = 47953, + [SMALL_STATE(775)] = 48000, + [SMALL_STATE(776)] = 48077, + [SMALL_STATE(777)] = 48126, + [SMALL_STATE(778)] = 48175, + [SMALL_STATE(779)] = 48222, + [SMALL_STATE(780)] = 48271, + [SMALL_STATE(781)] = 48350, + [SMALL_STATE(782)] = 48399, + [SMALL_STATE(783)] = 48448, + [SMALL_STATE(784)] = 48493, + [SMALL_STATE(785)] = 48542, + [SMALL_STATE(786)] = 48591, + [SMALL_STATE(787)] = 48638, + [SMALL_STATE(788)] = 48685, + [SMALL_STATE(789)] = 48753, + [SMALL_STATE(790)] = 48829, + [SMALL_STATE(791)] = 48877, + [SMALL_STATE(792)] = 48925, + [SMALL_STATE(793)] = 48969, + [SMALL_STATE(794)] = 49013, + [SMALL_STATE(795)] = 49057, + [SMALL_STATE(796)] = 49101, + [SMALL_STATE(797)] = 49155, + [SMALL_STATE(798)] = 49215, + [SMALL_STATE(799)] = 49283, + [SMALL_STATE(800)] = 49337, + [SMALL_STATE(801)] = 49405, + [SMALL_STATE(802)] = 49471, + [SMALL_STATE(803)] = 49529, + [SMALL_STATE(804)] = 49583, + [SMALL_STATE(805)] = 49637, + [SMALL_STATE(806)] = 49691, + [SMALL_STATE(807)] = 49755, + [SMALL_STATE(808)] = 49817, + [SMALL_STATE(809)] = 49871, + [SMALL_STATE(810)] = 49931, + [SMALL_STATE(811)] = 49999, + [SMALL_STATE(812)] = 50065, + [SMALL_STATE(813)] = 50123, + [SMALL_STATE(814)] = 50177, + [SMALL_STATE(815)] = 50241, + [SMALL_STATE(816)] = 50303, + [SMALL_STATE(817)] = 50371, + [SMALL_STATE(818)] = 50439, + [SMALL_STATE(819)] = 50493, + [SMALL_STATE(820)] = 50547, + [SMALL_STATE(821)] = 50607, + [SMALL_STATE(822)] = 50675, + [SMALL_STATE(823)] = 50741, + [SMALL_STATE(824)] = 50799, + [SMALL_STATE(825)] = 50853, + [SMALL_STATE(826)] = 50917, + [SMALL_STATE(827)] = 50979, + [SMALL_STATE(828)] = 51047, + [SMALL_STATE(829)] = 51115, + [SMALL_STATE(830)] = 51169, + [SMALL_STATE(831)] = 51223, + [SMALL_STATE(832)] = 51268, + [SMALL_STATE(833)] = 51313, + [SMALL_STATE(834)] = 51366, + [SMALL_STATE(835)] = 51409, + [SMALL_STATE(836)] = 51454, + [SMALL_STATE(837)] = 51499, + [SMALL_STATE(838)] = 51544, + [SMALL_STATE(839)] = 51589, + [SMALL_STATE(840)] = 51642, + [SMALL_STATE(841)] = 51685, + [SMALL_STATE(842)] = 51766, + [SMALL_STATE(843)] = 51811, + [SMALL_STATE(844)] = 51854, + [SMALL_STATE(845)] = 51907, + [SMALL_STATE(846)] = 51966, + [SMALL_STATE(847)] = 52009, + [SMALL_STATE(848)] = 52052, + [SMALL_STATE(849)] = 52095, + [SMALL_STATE(850)] = 52142, + [SMALL_STATE(851)] = 52189, + [SMALL_STATE(852)] = 52234, + [SMALL_STATE(853)] = 52277, + [SMALL_STATE(854)] = 52320, + [SMALL_STATE(855)] = 52365, + [SMALL_STATE(856)] = 52410, + [SMALL_STATE(857)] = 52477, + [SMALL_STATE(858)] = 52524, + [SMALL_STATE(859)] = 52571, + [SMALL_STATE(860)] = 52618, + [SMALL_STATE(861)] = 52663, + [SMALL_STATE(862)] = 52744, + [SMALL_STATE(863)] = 52809, + [SMALL_STATE(864)] = 52866, + [SMALL_STATE(865)] = 52919, + [SMALL_STATE(866)] = 52982, + [SMALL_STATE(867)] = 53043, + [SMALL_STATE(868)] = 53110, + [SMALL_STATE(869)] = 53177, + [SMALL_STATE(870)] = 53258, + [SMALL_STATE(871)] = 53339, + [SMALL_STATE(872)] = 53384, + [SMALL_STATE(873)] = 53431, + [SMALL_STATE(874)] = 53473, + [SMALL_STATE(875)] = 53515, + [SMALL_STATE(876)] = 53557, + [SMALL_STATE(877)] = 53599, + [SMALL_STATE(878)] = 53641, + [SMALL_STATE(879)] = 53683, + [SMALL_STATE(880)] = 53725, + [SMALL_STATE(881)] = 53767, + [SMALL_STATE(882)] = 53809, + [SMALL_STATE(883)] = 53851, + [SMALL_STATE(884)] = 53893, + [SMALL_STATE(885)] = 53935, + [SMALL_STATE(886)] = 53977, + [SMALL_STATE(887)] = 54019, + [SMALL_STATE(888)] = 54061, + [SMALL_STATE(889)] = 54103, + [SMALL_STATE(890)] = 54145, + [SMALL_STATE(891)] = 54187, + [SMALL_STATE(892)] = 54229, + [SMALL_STATE(893)] = 54271, + [SMALL_STATE(894)] = 54313, + [SMALL_STATE(895)] = 54355, + [SMALL_STATE(896)] = 54397, + [SMALL_STATE(897)] = 54477, + [SMALL_STATE(898)] = 54555, + [SMALL_STATE(899)] = 54597, + [SMALL_STATE(900)] = 54639, + [SMALL_STATE(901)] = 54681, + [SMALL_STATE(902)] = 54723, + [SMALL_STATE(903)] = 54765, + [SMALL_STATE(904)] = 54807, + [SMALL_STATE(905)] = 54849, + [SMALL_STATE(906)] = 54891, + [SMALL_STATE(907)] = 54933, + [SMALL_STATE(908)] = 54977, + [SMALL_STATE(909)] = 55019, + [SMALL_STATE(910)] = 55061, + [SMALL_STATE(911)] = 55103, + [SMALL_STATE(912)] = 55145, + [SMALL_STATE(913)] = 55187, + [SMALL_STATE(914)] = 55231, + [SMALL_STATE(915)] = 55275, + [SMALL_STATE(916)] = 55317, + [SMALL_STATE(917)] = 55359, + [SMALL_STATE(918)] = 55403, + [SMALL_STATE(919)] = 55445, + [SMALL_STATE(920)] = 55487, + [SMALL_STATE(921)] = 55529, + [SMALL_STATE(922)] = 55571, + [SMALL_STATE(923)] = 55613, + [SMALL_STATE(924)] = 55655, + [SMALL_STATE(925)] = 55699, + [SMALL_STATE(926)] = 55741, + [SMALL_STATE(927)] = 55783, + [SMALL_STATE(928)] = 55825, + [SMALL_STATE(929)] = 55867, + [SMALL_STATE(930)] = 55909, + [SMALL_STATE(931)] = 55951, + [SMALL_STATE(932)] = 56029, + [SMALL_STATE(933)] = 56071, + [SMALL_STATE(934)] = 56113, + [SMALL_STATE(935)] = 56191, + [SMALL_STATE(936)] = 56269, + [SMALL_STATE(937)] = 56311, + [SMALL_STATE(938)] = 56353, + [SMALL_STATE(939)] = 56395, + [SMALL_STATE(940)] = 56473, + [SMALL_STATE(941)] = 56515, + [SMALL_STATE(942)] = 56557, + [SMALL_STATE(943)] = 56599, + [SMALL_STATE(944)] = 56641, + [SMALL_STATE(945)] = 56683, + [SMALL_STATE(946)] = 56725, + [SMALL_STATE(947)] = 56767, + [SMALL_STATE(948)] = 56809, + [SMALL_STATE(949)] = 56851, + [SMALL_STATE(950)] = 56893, + [SMALL_STATE(951)] = 56935, + [SMALL_STATE(952)] = 56977, + [SMALL_STATE(953)] = 57018, + [SMALL_STATE(954)] = 57059, + [SMALL_STATE(955)] = 57100, + [SMALL_STATE(956)] = 57141, + [SMALL_STATE(957)] = 57182, + [SMALL_STATE(958)] = 57223, + [SMALL_STATE(959)] = 57264, + [SMALL_STATE(960)] = 57305, + [SMALL_STATE(961)] = 57346, + [SMALL_STATE(962)] = 57387, + [SMALL_STATE(963)] = 57428, + [SMALL_STATE(964)] = 57469, + [SMALL_STATE(965)] = 57510, + [SMALL_STATE(966)] = 57551, + [SMALL_STATE(967)] = 57592, + [SMALL_STATE(968)] = 57633, + [SMALL_STATE(969)] = 57674, + [SMALL_STATE(970)] = 57715, + [SMALL_STATE(971)] = 57756, + [SMALL_STATE(972)] = 57797, + [SMALL_STATE(973)] = 57838, + [SMALL_STATE(974)] = 57879, + [SMALL_STATE(975)] = 57920, + [SMALL_STATE(976)] = 57961, + [SMALL_STATE(977)] = 58002, + [SMALL_STATE(978)] = 58043, + [SMALL_STATE(979)] = 58084, + [SMALL_STATE(980)] = 58125, + [SMALL_STATE(981)] = 58166, + [SMALL_STATE(982)] = 58241, + [SMALL_STATE(983)] = 58320, + [SMALL_STATE(984)] = 58399, + [SMALL_STATE(985)] = 58444, + [SMALL_STATE(986)] = 58485, + [SMALL_STATE(987)] = 58530, + [SMALL_STATE(988)] = 58609, + [SMALL_STATE(989)] = 58650, + [SMALL_STATE(990)] = 58691, + [SMALL_STATE(991)] = 58732, + [SMALL_STATE(992)] = 58805, + [SMALL_STATE(993)] = 58875, + [SMALL_STATE(994)] = 58945, + [SMALL_STATE(995)] = 59007, + [SMALL_STATE(996)] = 59069, + [SMALL_STATE(997)] = 59108, + [SMALL_STATE(998)] = 59147, + [SMALL_STATE(999)] = 59186, + [SMALL_STATE(1000)] = 59225, + [SMALL_STATE(1001)] = 59255, + [SMALL_STATE(1002)] = 59292, + [SMALL_STATE(1003)] = 59317, + [SMALL_STATE(1004)] = 59354, + [SMALL_STATE(1005)] = 59391, + [SMALL_STATE(1006)] = 59416, + [SMALL_STATE(1007)] = 59469, + [SMALL_STATE(1008)] = 59522, + [SMALL_STATE(1009)] = 59559, + [SMALL_STATE(1010)] = 59584, + [SMALL_STATE(1011)] = 59637, + [SMALL_STATE(1012)] = 59666, + [SMALL_STATE(1013)] = 59691, + [SMALL_STATE(1014)] = 59720, + [SMALL_STATE(1015)] = 59755, + [SMALL_STATE(1016)] = 59790, + [SMALL_STATE(1017)] = 59824, + [SMALL_STATE(1018)] = 59870, + [SMALL_STATE(1019)] = 59898, + [SMALL_STATE(1020)] = 59932, + [SMALL_STATE(1021)] = 59963, + [SMALL_STATE(1022)] = 60006, + [SMALL_STATE(1023)] = 60049, + [SMALL_STATE(1024)] = 60092, + [SMALL_STATE(1025)] = 60135, + [SMALL_STATE(1026)] = 60178, + [SMALL_STATE(1027)] = 60221, + [SMALL_STATE(1028)] = 60264, + [SMALL_STATE(1029)] = 60304, + [SMALL_STATE(1030)] = 60348, + [SMALL_STATE(1031)] = 60373, + [SMALL_STATE(1032)] = 60410, + [SMALL_STATE(1033)] = 60447, + [SMALL_STATE(1034)] = 60484, + [SMALL_STATE(1035)] = 60521, + [SMALL_STATE(1036)] = 60555, + [SMALL_STATE(1037)] = 60589, + [SMALL_STATE(1038)] = 60610, + [SMALL_STATE(1039)] = 60631, + [SMALL_STATE(1040)] = 60653, + [SMALL_STATE(1041)] = 60684, + [SMALL_STATE(1042)] = 60721, + [SMALL_STATE(1043)] = 60744, + [SMALL_STATE(1044)] = 60765, + [SMALL_STATE(1045)] = 60796, + [SMALL_STATE(1046)] = 60827, + [SMALL_STATE(1047)] = 60858, + [SMALL_STATE(1048)] = 60895, + [SMALL_STATE(1049)] = 60932, + [SMALL_STATE(1050)] = 60963, + [SMALL_STATE(1051)] = 60994, + [SMALL_STATE(1052)] = 61025, + [SMALL_STATE(1053)] = 61056, + [SMALL_STATE(1054)] = 61073, + [SMALL_STATE(1055)] = 61104, + [SMALL_STATE(1056)] = 61135, + [SMALL_STATE(1057)] = 61166, + [SMALL_STATE(1058)] = 61197, + [SMALL_STATE(1059)] = 61228, + [SMALL_STATE(1060)] = 61259, + [SMALL_STATE(1061)] = 61290, + [SMALL_STATE(1062)] = 61321, + [SMALL_STATE(1063)] = 61352, + [SMALL_STATE(1064)] = 61389, + [SMALL_STATE(1065)] = 61412, + [SMALL_STATE(1066)] = 61443, + [SMALL_STATE(1067)] = 61474, + [SMALL_STATE(1068)] = 61511, + [SMALL_STATE(1069)] = 61532, + [SMALL_STATE(1070)] = 61552, + [SMALL_STATE(1071)] = 61586, + [SMALL_STATE(1072)] = 61606, + [SMALL_STATE(1073)] = 61630, + [SMALL_STATE(1074)] = 61652, + [SMALL_STATE(1075)] = 61686, + [SMALL_STATE(1076)] = 61720, + [SMALL_STATE(1077)] = 61742, + [SMALL_STATE(1078)] = 61766, + [SMALL_STATE(1079)] = 61784, + [SMALL_STATE(1080)] = 61802, + [SMALL_STATE(1081)] = 61836, + [SMALL_STATE(1082)] = 61856, + [SMALL_STATE(1083)] = 61880, + [SMALL_STATE(1084)] = 61902, + [SMALL_STATE(1085)] = 61936, + [SMALL_STATE(1086)] = 61958, + [SMALL_STATE(1087)] = 61992, + [SMALL_STATE(1088)] = 62026, + [SMALL_STATE(1089)] = 62046, + [SMALL_STATE(1090)] = 62068, + [SMALL_STATE(1091)] = 62102, + [SMALL_STATE(1092)] = 62124, + [SMALL_STATE(1093)] = 62158, + [SMALL_STATE(1094)] = 62192, + [SMALL_STATE(1095)] = 62226, + [SMALL_STATE(1096)] = 62260, + [SMALL_STATE(1097)] = 62278, + [SMALL_STATE(1098)] = 62297, + [SMALL_STATE(1099)] = 62318, + [SMALL_STATE(1100)] = 62337, + [SMALL_STATE(1101)] = 62360, + [SMALL_STATE(1102)] = 62379, + [SMALL_STATE(1103)] = 62398, + [SMALL_STATE(1104)] = 62423, + [SMALL_STATE(1105)] = 62442, + [SMALL_STATE(1106)] = 62461, + [SMALL_STATE(1107)] = 62484, + [SMALL_STATE(1108)] = 62509, + [SMALL_STATE(1109)] = 62532, + [SMALL_STATE(1110)] = 62553, + [SMALL_STATE(1111)] = 62567, + [SMALL_STATE(1112)] = 62581, + [SMALL_STATE(1113)] = 62599, + [SMALL_STATE(1114)] = 62617, + [SMALL_STATE(1115)] = 62631, + [SMALL_STATE(1116)] = 62649, + [SMALL_STATE(1117)] = 62663, + [SMALL_STATE(1118)] = 62679, + [SMALL_STATE(1119)] = 62699, + [SMALL_STATE(1120)] = 62721, + [SMALL_STATE(1121)] = 62741, + [SMALL_STATE(1122)] = 62761, + [SMALL_STATE(1123)] = 62779, + [SMALL_STATE(1124)] = 62797, + [SMALL_STATE(1125)] = 62811, + [SMALL_STATE(1126)] = 62831, + [SMALL_STATE(1127)] = 62845, + [SMALL_STATE(1128)] = 62859, + [SMALL_STATE(1129)] = 62873, + [SMALL_STATE(1130)] = 62887, + [SMALL_STATE(1131)] = 62901, + [SMALL_STATE(1132)] = 62915, + [SMALL_STATE(1133)] = 62929, + [SMALL_STATE(1134)] = 62943, + [SMALL_STATE(1135)] = 62957, + [SMALL_STATE(1136)] = 62975, + [SMALL_STATE(1137)] = 62989, + [SMALL_STATE(1138)] = 63015, + [SMALL_STATE(1139)] = 63029, + [SMALL_STATE(1140)] = 63049, + [SMALL_STATE(1141)] = 63063, + [SMALL_STATE(1142)] = 63077, + [SMALL_STATE(1143)] = 63091, + [SMALL_STATE(1144)] = 63105, + [SMALL_STATE(1145)] = 63125, + [SMALL_STATE(1146)] = 63139, + [SMALL_STATE(1147)] = 63163, + [SMALL_STATE(1148)] = 63179, + [SMALL_STATE(1149)] = 63193, + [SMALL_STATE(1150)] = 63215, + [SMALL_STATE(1151)] = 63229, + [SMALL_STATE(1152)] = 63243, + [SMALL_STATE(1153)] = 63261, + [SMALL_STATE(1154)] = 63279, + [SMALL_STATE(1155)] = 63299, + [SMALL_STATE(1156)] = 63317, + [SMALL_STATE(1157)] = 63333, + [SMALL_STATE(1158)] = 63351, + [SMALL_STATE(1159)] = 63365, + [SMALL_STATE(1160)] = 63385, + [SMALL_STATE(1161)] = 63407, + [SMALL_STATE(1162)] = 63427, + [SMALL_STATE(1163)] = 63447, + [SMALL_STATE(1164)] = 63467, + [SMALL_STATE(1165)] = 63485, + [SMALL_STATE(1166)] = 63501, + [SMALL_STATE(1167)] = 63521, + [SMALL_STATE(1168)] = 63539, + [SMALL_STATE(1169)] = 63559, + [SMALL_STATE(1170)] = 63579, + [SMALL_STATE(1171)] = 63599, + [SMALL_STATE(1172)] = 63617, + [SMALL_STATE(1173)] = 63641, + [SMALL_STATE(1174)] = 63659, + [SMALL_STATE(1175)] = 63677, + [SMALL_STATE(1176)] = 63701, + [SMALL_STATE(1177)] = 63715, + [SMALL_STATE(1178)] = 63740, + [SMALL_STATE(1179)] = 63753, + [SMALL_STATE(1180)] = 63772, + [SMALL_STATE(1181)] = 63797, + [SMALL_STATE(1182)] = 63820, + [SMALL_STATE(1183)] = 63839, + [SMALL_STATE(1184)] = 63860, + [SMALL_STATE(1185)] = 63885, + [SMALL_STATE(1186)] = 63910, + [SMALL_STATE(1187)] = 63935, + [SMALL_STATE(1188)] = 63960, + [SMALL_STATE(1189)] = 63979, + [SMALL_STATE(1190)] = 63996, + [SMALL_STATE(1191)] = 64011, + [SMALL_STATE(1192)] = 64034, + [SMALL_STATE(1193)] = 64055, + [SMALL_STATE(1194)] = 64080, + [SMALL_STATE(1195)] = 64105, + [SMALL_STATE(1196)] = 64126, + [SMALL_STATE(1197)] = 64151, + [SMALL_STATE(1198)] = 64170, + [SMALL_STATE(1199)] = 64183, + [SMALL_STATE(1200)] = 64202, + [SMALL_STATE(1201)] = 64221, + [SMALL_STATE(1202)] = 64238, + [SMALL_STATE(1203)] = 64263, + [SMALL_STATE(1204)] = 64288, + [SMALL_STATE(1205)] = 64313, + [SMALL_STATE(1206)] = 64326, + [SMALL_STATE(1207)] = 64351, + [SMALL_STATE(1208)] = 64376, + [SMALL_STATE(1209)] = 64401, + [SMALL_STATE(1210)] = 64426, + [SMALL_STATE(1211)] = 64449, + [SMALL_STATE(1212)] = 64474, + [SMALL_STATE(1213)] = 64499, + [SMALL_STATE(1214)] = 64522, + [SMALL_STATE(1215)] = 64539, + [SMALL_STATE(1216)] = 64560, + [SMALL_STATE(1217)] = 64581, + [SMALL_STATE(1218)] = 64606, + [SMALL_STATE(1219)] = 64631, + [SMALL_STATE(1220)] = 64650, + [SMALL_STATE(1221)] = 64669, + [SMALL_STATE(1222)] = 64688, + [SMALL_STATE(1223)] = 64701, + [SMALL_STATE(1224)] = 64724, + [SMALL_STATE(1225)] = 64743, + [SMALL_STATE(1226)] = 64766, + [SMALL_STATE(1227)] = 64791, + [SMALL_STATE(1228)] = 64816, + [SMALL_STATE(1229)] = 64841, + [SMALL_STATE(1230)] = 64866, + [SMALL_STATE(1231)] = 64891, + [SMALL_STATE(1232)] = 64910, + [SMALL_STATE(1233)] = 64935, + [SMALL_STATE(1234)] = 64948, + [SMALL_STATE(1235)] = 64967, + [SMALL_STATE(1236)] = 64990, + [SMALL_STATE(1237)] = 65015, + [SMALL_STATE(1238)] = 65028, + [SMALL_STATE(1239)] = 65047, + [SMALL_STATE(1240)] = 65070, + [SMALL_STATE(1241)] = 65085, + [SMALL_STATE(1242)] = 65108, + [SMALL_STATE(1243)] = 65124, + [SMALL_STATE(1244)] = 65140, + [SMALL_STATE(1245)] = 65160, + [SMALL_STATE(1246)] = 65176, + [SMALL_STATE(1247)] = 65196, + [SMALL_STATE(1248)] = 65214, + [SMALL_STATE(1249)] = 65228, + [SMALL_STATE(1250)] = 65244, + [SMALL_STATE(1251)] = 65266, + [SMALL_STATE(1252)] = 65282, + [SMALL_STATE(1253)] = 65296, + [SMALL_STATE(1254)] = 65318, + [SMALL_STATE(1255)] = 65338, + [SMALL_STATE(1256)] = 65356, + [SMALL_STATE(1257)] = 65372, + [SMALL_STATE(1258)] = 65388, + [SMALL_STATE(1259)] = 65410, + [SMALL_STATE(1260)] = 65424, + [SMALL_STATE(1261)] = 65438, + [SMALL_STATE(1262)] = 65456, + [SMALL_STATE(1263)] = 65472, + [SMALL_STATE(1264)] = 65484, + [SMALL_STATE(1265)] = 65504, + [SMALL_STATE(1266)] = 65526, + [SMALL_STATE(1267)] = 65544, + [SMALL_STATE(1268)] = 65562, + [SMALL_STATE(1269)] = 65580, + [SMALL_STATE(1270)] = 65600, + [SMALL_STATE(1271)] = 65616, + [SMALL_STATE(1272)] = 65634, + [SMALL_STATE(1273)] = 65650, + [SMALL_STATE(1274)] = 65666, + [SMALL_STATE(1275)] = 65682, + [SMALL_STATE(1276)] = 65696, + [SMALL_STATE(1277)] = 65718, + [SMALL_STATE(1278)] = 65740, + [SMALL_STATE(1279)] = 65758, + [SMALL_STATE(1280)] = 65780, + [SMALL_STATE(1281)] = 65796, + [SMALL_STATE(1282)] = 65810, + [SMALL_STATE(1283)] = 65822, + [SMALL_STATE(1284)] = 65839, + [SMALL_STATE(1285)] = 65856, + [SMALL_STATE(1286)] = 65875, + [SMALL_STATE(1287)] = 65890, + [SMALL_STATE(1288)] = 65909, + [SMALL_STATE(1289)] = 65924, + [SMALL_STATE(1290)] = 65943, + [SMALL_STATE(1291)] = 65960, + [SMALL_STATE(1292)] = 65971, + [SMALL_STATE(1293)] = 65988, + [SMALL_STATE(1294)] = 65999, + [SMALL_STATE(1295)] = 66014, + [SMALL_STATE(1296)] = 66031, + [SMALL_STATE(1297)] = 66050, + [SMALL_STATE(1298)] = 66067, + [SMALL_STATE(1299)] = 66084, + [SMALL_STATE(1300)] = 66099, + [SMALL_STATE(1301)] = 66116, + [SMALL_STATE(1302)] = 66127, + [SMALL_STATE(1303)] = 66144, + [SMALL_STATE(1304)] = 66161, + [SMALL_STATE(1305)] = 66178, + [SMALL_STATE(1306)] = 66197, + [SMALL_STATE(1307)] = 66216, + [SMALL_STATE(1308)] = 66227, + [SMALL_STATE(1309)] = 66242, + [SMALL_STATE(1310)] = 66257, + [SMALL_STATE(1311)] = 66272, + [SMALL_STATE(1312)] = 66287, + [SMALL_STATE(1313)] = 66298, + [SMALL_STATE(1314)] = 66315, + [SMALL_STATE(1315)] = 66334, + [SMALL_STATE(1316)] = 66353, + [SMALL_STATE(1317)] = 66370, + [SMALL_STATE(1318)] = 66387, + [SMALL_STATE(1319)] = 66404, + [SMALL_STATE(1320)] = 66421, + [SMALL_STATE(1321)] = 66438, + [SMALL_STATE(1322)] = 66455, + [SMALL_STATE(1323)] = 66471, + [SMALL_STATE(1324)] = 66485, + [SMALL_STATE(1325)] = 66499, + [SMALL_STATE(1326)] = 66515, + [SMALL_STATE(1327)] = 66531, + [SMALL_STATE(1328)] = 66545, + [SMALL_STATE(1329)] = 66561, + [SMALL_STATE(1330)] = 66573, + [SMALL_STATE(1331)] = 66589, + [SMALL_STATE(1332)] = 66605, + [SMALL_STATE(1333)] = 66619, + [SMALL_STATE(1334)] = 66631, + [SMALL_STATE(1335)] = 66645, + [SMALL_STATE(1336)] = 66659, + [SMALL_STATE(1337)] = 66673, + [SMALL_STATE(1338)] = 66689, + [SMALL_STATE(1339)] = 66705, + [SMALL_STATE(1340)] = 66719, + [SMALL_STATE(1341)] = 66733, + [SMALL_STATE(1342)] = 66749, + [SMALL_STATE(1343)] = 66765, + [SMALL_STATE(1344)] = 66779, + [SMALL_STATE(1345)] = 66789, + [SMALL_STATE(1346)] = 66805, + [SMALL_STATE(1347)] = 66821, + [SMALL_STATE(1348)] = 66837, + [SMALL_STATE(1349)] = 66851, + [SMALL_STATE(1350)] = 66861, + [SMALL_STATE(1351)] = 66877, + [SMALL_STATE(1352)] = 66893, + [SMALL_STATE(1353)] = 66907, + [SMALL_STATE(1354)] = 66923, + [SMALL_STATE(1355)] = 66933, + [SMALL_STATE(1356)] = 66947, + [SMALL_STATE(1357)] = 66963, + [SMALL_STATE(1358)] = 66979, + [SMALL_STATE(1359)] = 66989, + [SMALL_STATE(1360)] = 67005, + [SMALL_STATE(1361)] = 67019, + [SMALL_STATE(1362)] = 67035, + [SMALL_STATE(1363)] = 67051, + [SMALL_STATE(1364)] = 67067, + [SMALL_STATE(1365)] = 67081, + [SMALL_STATE(1366)] = 67097, + [SMALL_STATE(1367)] = 67111, + [SMALL_STATE(1368)] = 67127, + [SMALL_STATE(1369)] = 67141, + [SMALL_STATE(1370)] = 67155, + [SMALL_STATE(1371)] = 67171, + [SMALL_STATE(1372)] = 67187, + [SMALL_STATE(1373)] = 67201, + [SMALL_STATE(1374)] = 67215, + [SMALL_STATE(1375)] = 67229, + [SMALL_STATE(1376)] = 67243, + [SMALL_STATE(1377)] = 67259, + [SMALL_STATE(1378)] = 67275, + [SMALL_STATE(1379)] = 67291, + [SMALL_STATE(1380)] = 67305, + [SMALL_STATE(1381)] = 67319, + [SMALL_STATE(1382)] = 67335, + [SMALL_STATE(1383)] = 67349, + [SMALL_STATE(1384)] = 67363, + [SMALL_STATE(1385)] = 67379, + [SMALL_STATE(1386)] = 67395, + [SMALL_STATE(1387)] = 67411, + [SMALL_STATE(1388)] = 67427, + [SMALL_STATE(1389)] = 67441, + [SMALL_STATE(1390)] = 67455, + [SMALL_STATE(1391)] = 67469, + [SMALL_STATE(1392)] = 67479, + [SMALL_STATE(1393)] = 67493, + [SMALL_STATE(1394)] = 67503, + [SMALL_STATE(1395)] = 67517, + [SMALL_STATE(1396)] = 67533, + [SMALL_STATE(1397)] = 67549, + [SMALL_STATE(1398)] = 67565, + [SMALL_STATE(1399)] = 67581, + [SMALL_STATE(1400)] = 67597, + [SMALL_STATE(1401)] = 67611, + [SMALL_STATE(1402)] = 67625, + [SMALL_STATE(1403)] = 67641, + [SMALL_STATE(1404)] = 67657, + [SMALL_STATE(1405)] = 67671, + [SMALL_STATE(1406)] = 67684, + [SMALL_STATE(1407)] = 67697, + [SMALL_STATE(1408)] = 67710, + [SMALL_STATE(1409)] = 67721, + [SMALL_STATE(1410)] = 67734, + [SMALL_STATE(1411)] = 67743, + [SMALL_STATE(1412)] = 67754, + [SMALL_STATE(1413)] = 67767, + [SMALL_STATE(1414)] = 67780, + [SMALL_STATE(1415)] = 67793, + [SMALL_STATE(1416)] = 67806, + [SMALL_STATE(1417)] = 67819, + [SMALL_STATE(1418)] = 67828, + [SMALL_STATE(1419)] = 67841, + [SMALL_STATE(1420)] = 67854, + [SMALL_STATE(1421)] = 67867, + [SMALL_STATE(1422)] = 67880, + [SMALL_STATE(1423)] = 67889, + [SMALL_STATE(1424)] = 67902, + [SMALL_STATE(1425)] = 67915, + [SMALL_STATE(1426)] = 67924, + [SMALL_STATE(1427)] = 67937, + [SMALL_STATE(1428)] = 67950, + [SMALL_STATE(1429)] = 67959, + [SMALL_STATE(1430)] = 67972, + [SMALL_STATE(1431)] = 67985, + [SMALL_STATE(1432)] = 67996, + [SMALL_STATE(1433)] = 68009, + [SMALL_STATE(1434)] = 68022, + [SMALL_STATE(1435)] = 68035, + [SMALL_STATE(1436)] = 68048, + [SMALL_STATE(1437)] = 68059, + [SMALL_STATE(1438)] = 68068, + [SMALL_STATE(1439)] = 68079, + [SMALL_STATE(1440)] = 68092, + [SMALL_STATE(1441)] = 68105, + [SMALL_STATE(1442)] = 68118, + [SMALL_STATE(1443)] = 68127, + [SMALL_STATE(1444)] = 68140, + [SMALL_STATE(1445)] = 68153, + [SMALL_STATE(1446)] = 68166, + [SMALL_STATE(1447)] = 68177, + [SMALL_STATE(1448)] = 68190, + [SMALL_STATE(1449)] = 68203, + [SMALL_STATE(1450)] = 68216, + [SMALL_STATE(1451)] = 68229, + [SMALL_STATE(1452)] = 68242, + [SMALL_STATE(1453)] = 68255, + [SMALL_STATE(1454)] = 68268, + [SMALL_STATE(1455)] = 68281, + [SMALL_STATE(1456)] = 68294, + [SMALL_STATE(1457)] = 68307, + [SMALL_STATE(1458)] = 68320, + [SMALL_STATE(1459)] = 68333, + [SMALL_STATE(1460)] = 68346, + [SMALL_STATE(1461)] = 68359, + [SMALL_STATE(1462)] = 68372, + [SMALL_STATE(1463)] = 68385, + [SMALL_STATE(1464)] = 68396, + [SMALL_STATE(1465)] = 68409, + [SMALL_STATE(1466)] = 68422, + [SMALL_STATE(1467)] = 68435, + [SMALL_STATE(1468)] = 68448, + [SMALL_STATE(1469)] = 68461, + [SMALL_STATE(1470)] = 68474, + [SMALL_STATE(1471)] = 68487, + [SMALL_STATE(1472)] = 68500, + [SMALL_STATE(1473)] = 68513, + [SMALL_STATE(1474)] = 68526, + [SMALL_STATE(1475)] = 68539, + [SMALL_STATE(1476)] = 68552, + [SMALL_STATE(1477)] = 68565, + [SMALL_STATE(1478)] = 68578, + [SMALL_STATE(1479)] = 68591, + [SMALL_STATE(1480)] = 68604, + [SMALL_STATE(1481)] = 68617, + [SMALL_STATE(1482)] = 68630, + [SMALL_STATE(1483)] = 68643, + [SMALL_STATE(1484)] = 68656, + [SMALL_STATE(1485)] = 68669, + [SMALL_STATE(1486)] = 68678, + [SMALL_STATE(1487)] = 68691, + [SMALL_STATE(1488)] = 68704, + [SMALL_STATE(1489)] = 68717, + [SMALL_STATE(1490)] = 68730, + [SMALL_STATE(1491)] = 68743, + [SMALL_STATE(1492)] = 68756, + [SMALL_STATE(1493)] = 68769, + [SMALL_STATE(1494)] = 68782, + [SMALL_STATE(1495)] = 68791, + [SMALL_STATE(1496)] = 68804, + [SMALL_STATE(1497)] = 68817, + [SMALL_STATE(1498)] = 68830, + [SMALL_STATE(1499)] = 68843, + [SMALL_STATE(1500)] = 68854, + [SMALL_STATE(1501)] = 68867, + [SMALL_STATE(1502)] = 68880, + [SMALL_STATE(1503)] = 68893, + [SMALL_STATE(1504)] = 68906, + [SMALL_STATE(1505)] = 68919, + [SMALL_STATE(1506)] = 68932, + [SMALL_STATE(1507)] = 68945, + [SMALL_STATE(1508)] = 68956, + [SMALL_STATE(1509)] = 68967, + [SMALL_STATE(1510)] = 68976, + [SMALL_STATE(1511)] = 68985, + [SMALL_STATE(1512)] = 68998, + [SMALL_STATE(1513)] = 69007, + [SMALL_STATE(1514)] = 69020, + [SMALL_STATE(1515)] = 69033, + [SMALL_STATE(1516)] = 69046, + [SMALL_STATE(1517)] = 69057, + [SMALL_STATE(1518)] = 69068, + [SMALL_STATE(1519)] = 69081, + [SMALL_STATE(1520)] = 69094, + [SMALL_STATE(1521)] = 69107, + [SMALL_STATE(1522)] = 69120, + [SMALL_STATE(1523)] = 69129, + [SMALL_STATE(1524)] = 69142, + [SMALL_STATE(1525)] = 69151, + [SMALL_STATE(1526)] = 69164, + [SMALL_STATE(1527)] = 69177, + [SMALL_STATE(1528)] = 69190, + [SMALL_STATE(1529)] = 69203, + [SMALL_STATE(1530)] = 69212, + [SMALL_STATE(1531)] = 69225, + [SMALL_STATE(1532)] = 69238, + [SMALL_STATE(1533)] = 69251, + [SMALL_STATE(1534)] = 69259, + [SMALL_STATE(1535)] = 69267, + [SMALL_STATE(1536)] = 69275, + [SMALL_STATE(1537)] = 69283, + [SMALL_STATE(1538)] = 69293, + [SMALL_STATE(1539)] = 69303, + [SMALL_STATE(1540)] = 69311, + [SMALL_STATE(1541)] = 69319, + [SMALL_STATE(1542)] = 69329, + [SMALL_STATE(1543)] = 69337, + [SMALL_STATE(1544)] = 69347, + [SMALL_STATE(1545)] = 69357, + [SMALL_STATE(1546)] = 69365, + [SMALL_STATE(1547)] = 69375, + [SMALL_STATE(1548)] = 69385, + [SMALL_STATE(1549)] = 69395, + [SMALL_STATE(1550)] = 69403, + [SMALL_STATE(1551)] = 69411, + [SMALL_STATE(1552)] = 69421, + [SMALL_STATE(1553)] = 69429, + [SMALL_STATE(1554)] = 69439, + [SMALL_STATE(1555)] = 69447, + [SMALL_STATE(1556)] = 69457, + [SMALL_STATE(1557)] = 69467, + [SMALL_STATE(1558)] = 69475, + [SMALL_STATE(1559)] = 69483, + [SMALL_STATE(1560)] = 69491, + [SMALL_STATE(1561)] = 69501, + [SMALL_STATE(1562)] = 69509, + [SMALL_STATE(1563)] = 69517, + [SMALL_STATE(1564)] = 69525, + [SMALL_STATE(1565)] = 69535, + [SMALL_STATE(1566)] = 69543, + [SMALL_STATE(1567)] = 69551, + [SMALL_STATE(1568)] = 69559, + [SMALL_STATE(1569)] = 69569, + [SMALL_STATE(1570)] = 69577, + [SMALL_STATE(1571)] = 69585, + [SMALL_STATE(1572)] = 69593, + [SMALL_STATE(1573)] = 69603, + [SMALL_STATE(1574)] = 69613, + [SMALL_STATE(1575)] = 69623, + [SMALL_STATE(1576)] = 69631, + [SMALL_STATE(1577)] = 69641, + [SMALL_STATE(1578)] = 69649, + [SMALL_STATE(1579)] = 69657, + [SMALL_STATE(1580)] = 69665, + [SMALL_STATE(1581)] = 69673, + [SMALL_STATE(1582)] = 69681, + [SMALL_STATE(1583)] = 69689, + [SMALL_STATE(1584)] = 69697, + [SMALL_STATE(1585)] = 69705, + [SMALL_STATE(1586)] = 69713, + [SMALL_STATE(1587)] = 69721, + [SMALL_STATE(1588)] = 69731, + [SMALL_STATE(1589)] = 69741, + [SMALL_STATE(1590)] = 69749, + [SMALL_STATE(1591)] = 69759, + [SMALL_STATE(1592)] = 69767, + [SMALL_STATE(1593)] = 69775, + [SMALL_STATE(1594)] = 69785, + [SMALL_STATE(1595)] = 69795, + [SMALL_STATE(1596)] = 69805, + [SMALL_STATE(1597)] = 69813, + [SMALL_STATE(1598)] = 69823, + [SMALL_STATE(1599)] = 69831, + [SMALL_STATE(1600)] = 69841, + [SMALL_STATE(1601)] = 69849, + [SMALL_STATE(1602)] = 69859, + [SMALL_STATE(1603)] = 69869, + [SMALL_STATE(1604)] = 69877, + [SMALL_STATE(1605)] = 69887, + [SMALL_STATE(1606)] = 69895, + [SMALL_STATE(1607)] = 69903, + [SMALL_STATE(1608)] = 69911, + [SMALL_STATE(1609)] = 69919, + [SMALL_STATE(1610)] = 69927, + [SMALL_STATE(1611)] = 69935, + [SMALL_STATE(1612)] = 69943, + [SMALL_STATE(1613)] = 69953, + [SMALL_STATE(1614)] = 69960, + [SMALL_STATE(1615)] = 69967, + [SMALL_STATE(1616)] = 69974, + [SMALL_STATE(1617)] = 69981, + [SMALL_STATE(1618)] = 69988, + [SMALL_STATE(1619)] = 69995, + [SMALL_STATE(1620)] = 70002, + [SMALL_STATE(1621)] = 70009, + [SMALL_STATE(1622)] = 70016, + [SMALL_STATE(1623)] = 70023, + [SMALL_STATE(1624)] = 70030, + [SMALL_STATE(1625)] = 70037, + [SMALL_STATE(1626)] = 70044, + [SMALL_STATE(1627)] = 70051, + [SMALL_STATE(1628)] = 70058, + [SMALL_STATE(1629)] = 70065, + [SMALL_STATE(1630)] = 70072, + [SMALL_STATE(1631)] = 70079, + [SMALL_STATE(1632)] = 70086, + [SMALL_STATE(1633)] = 70093, + [SMALL_STATE(1634)] = 70100, + [SMALL_STATE(1635)] = 70107, + [SMALL_STATE(1636)] = 70114, + [SMALL_STATE(1637)] = 70121, + [SMALL_STATE(1638)] = 70128, + [SMALL_STATE(1639)] = 70135, + [SMALL_STATE(1640)] = 70142, + [SMALL_STATE(1641)] = 70149, + [SMALL_STATE(1642)] = 70156, + [SMALL_STATE(1643)] = 70163, + [SMALL_STATE(1644)] = 70170, + [SMALL_STATE(1645)] = 70177, + [SMALL_STATE(1646)] = 70184, + [SMALL_STATE(1647)] = 70191, + [SMALL_STATE(1648)] = 70198, + [SMALL_STATE(1649)] = 70205, + [SMALL_STATE(1650)] = 70212, + [SMALL_STATE(1651)] = 70219, + [SMALL_STATE(1652)] = 70226, + [SMALL_STATE(1653)] = 70233, + [SMALL_STATE(1654)] = 70240, + [SMALL_STATE(1655)] = 70247, + [SMALL_STATE(1656)] = 70254, + [SMALL_STATE(1657)] = 70261, + [SMALL_STATE(1658)] = 70268, + [SMALL_STATE(1659)] = 70275, + [SMALL_STATE(1660)] = 70282, + [SMALL_STATE(1661)] = 70289, + [SMALL_STATE(1662)] = 70296, + [SMALL_STATE(1663)] = 70303, + [SMALL_STATE(1664)] = 70310, + [SMALL_STATE(1665)] = 70317, + [SMALL_STATE(1666)] = 70324, + [SMALL_STATE(1667)] = 70331, + [SMALL_STATE(1668)] = 70338, + [SMALL_STATE(1669)] = 70345, + [SMALL_STATE(1670)] = 70352, + [SMALL_STATE(1671)] = 70359, + [SMALL_STATE(1672)] = 70366, + [SMALL_STATE(1673)] = 70373, + [SMALL_STATE(1674)] = 70380, + [SMALL_STATE(1675)] = 70387, + [SMALL_STATE(1676)] = 70394, + [SMALL_STATE(1677)] = 70401, + [SMALL_STATE(1678)] = 70408, + [SMALL_STATE(1679)] = 70415, + [SMALL_STATE(1680)] = 70422, + [SMALL_STATE(1681)] = 70429, + [SMALL_STATE(1682)] = 70436, + [SMALL_STATE(1683)] = 70443, + [SMALL_STATE(1684)] = 70450, + [SMALL_STATE(1685)] = 70457, + [SMALL_STATE(1686)] = 70464, + [SMALL_STATE(1687)] = 70471, + [SMALL_STATE(1688)] = 70478, + [SMALL_STATE(1689)] = 70485, + [SMALL_STATE(1690)] = 70492, + [SMALL_STATE(1691)] = 70499, + [SMALL_STATE(1692)] = 70506, + [SMALL_STATE(1693)] = 70513, + [SMALL_STATE(1694)] = 70520, + [SMALL_STATE(1695)] = 70527, + [SMALL_STATE(1696)] = 70534, + [SMALL_STATE(1697)] = 70541, + [SMALL_STATE(1698)] = 70548, + [SMALL_STATE(1699)] = 70555, + [SMALL_STATE(1700)] = 70562, + [SMALL_STATE(1701)] = 70569, + [SMALL_STATE(1702)] = 70576, + [SMALL_STATE(1703)] = 70583, + [SMALL_STATE(1704)] = 70590, + [SMALL_STATE(1705)] = 70597, + [SMALL_STATE(1706)] = 70604, + [SMALL_STATE(1707)] = 70611, + [SMALL_STATE(1708)] = 70618, + [SMALL_STATE(1709)] = 70625, + [SMALL_STATE(1710)] = 70632, + [SMALL_STATE(1711)] = 70639, + [SMALL_STATE(1712)] = 70646, + [SMALL_STATE(1713)] = 70653, + [SMALL_STATE(1714)] = 70660, + [SMALL_STATE(1715)] = 70667, + [SMALL_STATE(1716)] = 70674, + [SMALL_STATE(1717)] = 70681, + [SMALL_STATE(1718)] = 70688, + [SMALL_STATE(1719)] = 70695, + [SMALL_STATE(1720)] = 70702, + [SMALL_STATE(1721)] = 70709, + [SMALL_STATE(1722)] = 70716, + [SMALL_STATE(1723)] = 70723, + [SMALL_STATE(1724)] = 70730, + [SMALL_STATE(1725)] = 70737, + [SMALL_STATE(1726)] = 70744, + [SMALL_STATE(1727)] = 70751, + [SMALL_STATE(1728)] = 70758, + [SMALL_STATE(1729)] = 70765, + [SMALL_STATE(1730)] = 70772, + [SMALL_STATE(1731)] = 70779, + [SMALL_STATE(1732)] = 70786, + [SMALL_STATE(1733)] = 70793, + [SMALL_STATE(1734)] = 70800, + [SMALL_STATE(1735)] = 70807, + [SMALL_STATE(1736)] = 70814, + [SMALL_STATE(1737)] = 70821, + [SMALL_STATE(1738)] = 70828, + [SMALL_STATE(1739)] = 70835, + [SMALL_STATE(1740)] = 70842, + [SMALL_STATE(1741)] = 70849, + [SMALL_STATE(1742)] = 70856, + [SMALL_STATE(1743)] = 70863, + [SMALL_STATE(1744)] = 70870, + [SMALL_STATE(1745)] = 70877, + [SMALL_STATE(1746)] = 70884, + [SMALL_STATE(1747)] = 70891, + [SMALL_STATE(1748)] = 70898, + [SMALL_STATE(1749)] = 70905, + [SMALL_STATE(1750)] = 70912, + [SMALL_STATE(1751)] = 70919, + [SMALL_STATE(1752)] = 70926, + [SMALL_STATE(1753)] = 70933, + [SMALL_STATE(1754)] = 70940, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -83259,1698 +84025,1704 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1042), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(396), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(295), [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(236), [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(343), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(397), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(657), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(200), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(383), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(376), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(688), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(208), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(349), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(372), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 26), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 51), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 145), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 145), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 127), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 127), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, 0, 16), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 7), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 57), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 57), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 84), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 84), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 30), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 69), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 52), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 26), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 145), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 145), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 127), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 127), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 7), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, 0, 16), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 57), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 57), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 84), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 84), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 30), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 80), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 80), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1676), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 41), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 41), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 71), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 71), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1715), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(360), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(428), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 161), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 161), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 168), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 168), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, 0, 169), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, 0, 169), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 167), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 167), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 151), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 151), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 57), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 57), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 152), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 152), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 84), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 84), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 134), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 134), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 162), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 162), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 55), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 55), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 147), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 147), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 129), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 129), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 84), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 84), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 80), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 80), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 77), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 77), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 133), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 133), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 83), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 83), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 57), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 57), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 26), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 51), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 154), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 154), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 155), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 155), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 84), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 84), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 57), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 57), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 163), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 163), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 138), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 138), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 142), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 142), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 61), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 61), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 65), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 65), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 92), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 92), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 93), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 93), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 78), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 78), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 94), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 94), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 81), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 81), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 82), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 82), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 85), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 85), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 90), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 90), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 57), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 57), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 57), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 57), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 128), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 128), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 131), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 131), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 84), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 84), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 84), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 84), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 143), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 143), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 149), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 149), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 150), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 150), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 156), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 156), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 157), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 157), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 158), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 158), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 159), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 159), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 160), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 160), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 165), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 165), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 166), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 166), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 58), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 58), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 20), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 20), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 2), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 2), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 96), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 96), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 32), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 32), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 62), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 62), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 32), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 32), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 62), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 62), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 96), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 96), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 68), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 68), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 62), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 62), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 32), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 32), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 62), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 62), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 52), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 52), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 28), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 28), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 27), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 27), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 27), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 27), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 32), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 32), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 27), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 27), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 52), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 52), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 52), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 52), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 52), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 52), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 68), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 68), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 73), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 73), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 40), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 40), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1042), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(667), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1641), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(667), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(620), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(648), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1729), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(648), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(619), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 37), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 37), SHIFT_REPEAT(590), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(680), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1683), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(680), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(621), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 32), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 27), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(643), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1691), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(643), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(618), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 27), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(654), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1723), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(654), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(617), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 35), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(640), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1656), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(640), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(616), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 69), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 71), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 71), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1739), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 41), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 41), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 80), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 80), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1736), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(431), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(394), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, 0, 169), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, 0, 169), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 134), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 134), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 161), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 161), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 162), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 162), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 167), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 167), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 84), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 84), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 57), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 57), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 168), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 168), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 152), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 152), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 151), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 151), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 26), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 55), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 55), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 147), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 147), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 52), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 80), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 80), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 77), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 77), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 84), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 84), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 83), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 83), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 57), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 57), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 129), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 129), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 133), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 133), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 57), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 57), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 154), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 154), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 155), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 155), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 138), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 138), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 84), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 84), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 163), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 163), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 65), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 65), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 158), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 158), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 159), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 159), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 160), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 160), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 93), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 93), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 165), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 165), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 166), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 166), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 78), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 78), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 81), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 81), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 57), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 57), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 57), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 57), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 82), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 82), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 94), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 94), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 149), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 149), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 58), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 58), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 61), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 61), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 150), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 150), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 85), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 85), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 92), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 92), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 128), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 128), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 131), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 131), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 84), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 84), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 84), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 84), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 142), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 142), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 143), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 143), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 156), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 156), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 157), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 157), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 90), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 90), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 20), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 20), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 2), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 2), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 28), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 28), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 27), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 27), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 27), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 27), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 32), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 32), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 27), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 27), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 32), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 32), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 62), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 62), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 32), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 32), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 68), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 68), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 62), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 62), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 32), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 32), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 62), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 62), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 68), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 68), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 96), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 96), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 62), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 62), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 96), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 96), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 40), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 40), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 73), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 73), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(650), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1702), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(650), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(624), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(677), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1710), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(677), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(625), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 37), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 37), SHIFT_REPEAT(589), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(637), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1619), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(637), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(620), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 32), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(695), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1730), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(695), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(622), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 27), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 27), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 35), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(663), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1698), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(663), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(621), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(180), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1149), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1149), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(176), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 40), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 40), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 67), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 33), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 33), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 36), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 36), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(696), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(1672), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(696), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 43), SHIFT_REPEAT(623), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(184), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1149), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1149), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(180), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 40), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 40), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 36), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 36), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 33), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 33), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 86), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 67), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 86), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(989), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(504), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 140), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 135), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 136), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 140), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 145), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 153), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 140), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 140), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1135), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1135), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 140), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 140), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 67), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 67), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 140), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 140), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 32), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 145), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 153), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 136), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 135), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 140), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 140), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 32), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 127), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 140), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 33), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 63), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 32), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 67), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 69), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 44), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 44), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 44), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 44), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 140), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 140), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 140), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 127), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 33), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 32), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 67), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 63), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(262), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(256), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 139), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 36), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 44), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 44), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 44), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 44), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 32), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 144), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 23), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 24), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 31), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(256), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 44), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 44), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 44), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 44), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 36), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 69), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 32), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(254), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 44), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 44), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 44), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 44), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 139), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 64), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 91), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 36), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 54), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 32), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(254), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 91), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 23), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 36), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(255), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 24), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 97), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 37), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 37), SHIFT_REPEAT(242), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 24), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 66), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 25), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), SHIFT_REPEAT(1452), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 37), SHIFT_REPEAT(429), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 37), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 137), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 50), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, 0, 16), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 30), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 53), SHIFT_REPEAT(359), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 53), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 87), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 25), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 25), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1202), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 46), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 16), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(985), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1514), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 74), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 74), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(243), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 37), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), SHIFT_REPEAT(234), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), SHIFT_REPEAT(1493), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 37), SHIFT_REPEAT(280), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 37), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 89), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 59), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 22), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 32), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 40), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 89), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 49), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 68), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 95), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 5, 0, 75), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 5, 0, 76), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 164), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 88), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 47), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 32), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 39), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 7, 0, 125), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 63), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3328] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 25), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 37), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 37), SHIFT_REPEAT(250), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 54), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 144), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 31), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 32), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 137), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 25), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 66), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 24), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), SHIFT_REPEAT(1503), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 37), SHIFT_REPEAT(417), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 37), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 50), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, 0, 16), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 53), SHIFT_REPEAT(393), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 53), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 25), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 25), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 30), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 87), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 89), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), SHIFT_REPEAT(246), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 45), SHIFT_REPEAT(1465), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 46), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 37), SHIFT_REPEAT(252), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 37), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), + [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1593), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 37), SHIFT_REPEAT(265), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 37), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 16), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 74), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 74), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1200), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 59), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 164), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 32), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 68), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 63), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 5, 0, 75), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 5, 0, 76), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 47), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 32), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 88), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 89), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 49), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 39), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 22), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 7, 0, 125), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 40), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 95), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 25), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), }; enum ts_external_scanner_symbol_identifiers { @@ -85011,10 +85783,10 @@ static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = true, }, [8] = { - [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [9] = { - [ts_external_token__template_string_start] = true, + [ts_external_token__string_start] = true, }, [10] = { [ts_external_token__newline] = true, From 91d4cf662436a7f22cb4e16382974a9c176ca7f7 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 16:07:25 +0000 Subject: [PATCH 3/8] Python: Update `python.tsg` First, we extend the various location overriding hacks to also accept list and dict splats in various places. Having done this, we then have to tackle how to actually desugar these new comprehension forms (as this is what we currently do for the old forms). As a reminder, a list comprehension like `[x for x in y]` currently gets desugared into a small local function, something like ```python def listcomp(a): for x in a: yield x listcomp(y) ``` For `[*x for x in y]`, the behaviour we want is that we unpack `x` before yielding its elements in turn. This is essentially what we would get if we were to use `yield from x` instead of `yield x` in the above desugaring, so that's what we do. This also works for set comprehensions. For dict comprehensions, it's slightly more complicated. Here, the generator function instead yields a stream of `(key, value)` tuples. (And apparently the old parser got this wrong and emitted `(value, key)` pairs instead, which we faithfully recreated in the new parser as well. We fix that bug in both parsers while we're at it). So, a bare `yield from` is not enough, we also need a `.items()` call to get the double-starred expression to emit its items as a stream of tuples (that we then `yield from`. To make this (hopefully) less verbose in the implementation, we defer the decision of whether to use `yield` or `yield from` by introducing a `yield_kind` scoped variable that determines the type of the actual AST node. And of course for dict comprehensions with unpacking we need to synthesise the extra machinery mentioned above. On the plus side, this means we don't have to mess with control-flow, as the existing machinery should be able to handle the desugared syntax just fine. --- python/extractor/tsg-python/python.tsg | 78 ++++++++++++++++++++++---- 1 file changed, 66 insertions(+), 12 deletions(-) diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 93d6e95a344a..e0aadd5432cd 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -403,7 +403,7 @@ ;;; GeneratorExp -(generator_expression . "(" . (comment)* . (expression) @start [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @generatorexp +(generator_expression . "(" . (comment)* . [(expression) (list_splat)] @start [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @generatorexp { attr (@generatorexp.node) _location_start = (location-start @start) attr (@generatorexp.node) _location_end = (location-end @end) @@ -415,13 +415,13 @@ attr (@if.node) _location_end = (location-end @expr) } -(generator_expression . "(" . (comment)* . (expression) @start (for_in_clause) @child [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @_genexpr +(generator_expression . "(" . (comment)* . [(expression) (list_splat)] @start (for_in_clause) @child [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @_genexpr { attr (@child.node) _location_start = (location-start @start) attr (@child.node) _location_end = (location-end @end) } -(generator_expression . "(" . (comment)* . (expression) @start (for_in_clause) @end . (comment)* . ")" .) @_genexpr +(generator_expression . "(" . (comment)* . [(expression) (list_splat)] @start (for_in_clause) @end . (comment)* . ")" .) @_genexpr { attr (@end.node) _location_start = (location-start @start) attr (@end.node) _location_end = (location-end @end) @@ -824,6 +824,29 @@ attr (@genexpr.arg_use) ctx = "load" } +; DictComp with unpacking (PEP 798): `{**d for d in dicts}` +(dictionary_comprehension + body: (dictionary_splat) +) @genexpr +{ + let @genexpr.fun = (ast-node @genexpr "Function") + attr (@genexpr.node) function = @genexpr.fun + attr (@genexpr.fun) name = "dictcomp" + + let @genexpr.arg = (ast-node @genexpr "Name") + attr (@genexpr.arg) variable = ".0" + attr (@genexpr.arg) ctx = "param" + + edge @genexpr.fun -> @genexpr.arg + attr (@genexpr.fun -> @genexpr.arg) args = 0 + attr (@genexpr.fun) kwonlyargs = #null + attr (@genexpr.fun) kwarg = #null + + let @genexpr.arg_use = (ast-node @genexpr "Name") + attr (@genexpr.arg_use) variable = ".0" + attr (@genexpr.arg_use) ctx = "load" +} + ;;;;;; End of DictComp (`{a: b for c in d if e}`) ;;;;;; GeneratorExp (`(a for b in c if d)`) @@ -862,7 +885,7 @@ ; information for the entire generator expression (yes, it is a wide parameter!) and so we must recreate the logic for ; setting this location information correctly. -(generator_expression . "(" . (comment)* . (expression) @start [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @genexpr +(generator_expression . "(" . (comment)* . [(expression) (list_splat)] @start [(for_in_clause) (if_clause)] @end . (comment)* . ")" .) @genexpr { ; Synthesize the `genexpr` function let @genexpr.fun = (ast-node @genexpr "Function") @@ -1034,12 +1057,25 @@ ; For everything except dictionary comprehensions, the innermost expression is just the `body` of the ; comprehension. [ - (generator_expression body: (_) @body) @genexpr - (list_comprehension body: (_) @body) @genexpr - (set_comprehension body: (_) @body) @genexpr + (generator_expression body: (expression) @body) @genexpr + (list_comprehension body: (expression) @body) @genexpr + (set_comprehension body: (expression) @body) @genexpr ] { let @genexpr.result = @body.node + let @genexpr.yield_kind = "Yield" +} + +; For starred comprehensions (PEP 798), the result is the inner expression (not the Starred +; wrapper), and we use `yield from` instead of `yield` to represent the unpacking semantics. +[ + (generator_expression body: (list_splat (expression) @inner) @_body) @genexpr + (list_comprehension body: (list_splat (expression) @inner) @_body) @genexpr + (set_comprehension body: (list_splat (expression) @inner) @_body) @genexpr +] +{ + let @genexpr.result = @inner.node + let @genexpr.yield_kind = "YieldFrom" } ; For dict comprehensions, we build an explicit tuple using the key and value pair. @@ -1052,13 +1088,31 @@ { let tuple = (ast-node @body "Tuple") edge tuple -> @key.node - attr (tuple -> @key.node) elts = 1 + attr (tuple -> @key.node) elts = 0 edge tuple -> @value.node - attr (tuple -> @value.node) elts = 0 - ; TODO verify that it is correct to use a `(value, key)` tuple, and not a `(key, value)` tuple above. - ; That is what the current parser does... + attr (tuple -> @value.node) elts = 1 attr (tuple) ctx = "load" let @genexpr.result = tuple + let @genexpr.yield_kind = "Yield" +} + +; For dict comprehensions with unpacking (PEP 798), `{**d for d in dicts}` desugars to +; `yield from d.items()` to produce (key, value) tuples consistent with the regular dict comp model. +(dictionary_comprehension + body: (dictionary_splat (expression) @inner) @_body +) @genexpr +{ + ; Synthesize `d.items()`: Attribute(value=d, attr='items') then Call(func=attr) + let attr = (ast-node @inner "Attribute") + attr (attr) value = @inner.node + attr (attr) attr = "items" + attr (attr) ctx = "load" + + let call = (ast-node @inner "Call") + attr (call) func = attr + + let @genexpr.result = call + let @genexpr.yield_kind = "YieldFrom" } ; For the final clause, we need to hook it up with the rest of the expression. @@ -1094,7 +1148,7 @@ let last = (get-last-element @last_candidates) let expr = (ast-node @body "Expr") - let yield = (ast-node @body "Yield") + let yield = (ast-node @body @genexpr.yield_kind) let @genexpr.expr = expr let @genexpr.yield = yield From 90b64616f79b77f1a3f9de6e4f43090a561fe3f0 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 16:08:30 +0000 Subject: [PATCH 4/8] Python: Also fix `(value, key)` bug in old parser --- python/extractor/semmle/python/parser/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/extractor/semmle/python/parser/ast.py b/python/extractor/semmle/python/parser/ast.py index 85d87108e353..e1843131554a 100644 --- a/python/extractor/semmle/python/parser/ast.py +++ b/python/extractor/semmle/python/parser/ast.py @@ -1432,7 +1432,7 @@ def rewrite_comp(node): elt = node.elt del node.elt else: - elt = ast.Tuple([node.value, node.key], LOAD) + elt = ast.Tuple([node.key, node.value], LOAD) elt.lineno = node.key.lineno elt.col_offset = node.key.col_offset elt._end = node.value._end From fc5b3562c395680208879fb82e58589cbe558707 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 16:08:45 +0000 Subject: [PATCH 5/8] Python: Add parser test for comprehensions with unpacking --- .../unpacking_in_comprehensions_new.expected | 285 ++++++++++++++++++ .../parser/unpacking_in_comprehensions_new.py | 19 ++ 2 files changed, 304 insertions(+) create mode 100644 python/extractor/tests/parser/unpacking_in_comprehensions_new.expected create mode 100644 python/extractor/tests/parser/unpacking_in_comprehensions_new.py diff --git a/python/extractor/tests/parser/unpacking_in_comprehensions_new.expected b/python/extractor/tests/parser/unpacking_in_comprehensions_new.expected new file mode 100644 index 000000000000..a95d0bc25059 --- /dev/null +++ b/python/extractor/tests/parser/unpacking_in_comprehensions_new.expected @@ -0,0 +1,285 @@ +Module: [4, 0] - [20, 0] + body: [ + Expr: [4, 0] - [4, 15] + value: + ListComp: [4, 0] - [4, 15] + elt: None + generators: None + function: + Function: [4, 0] - [4, 15] + name: 'listcomp' + type_parameters: [] + args: [ + Name: [4, 0] - [4, 15] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [4, 0] - [4, 15] + target: + Name: [4, 8] - [4, 9] + variable: Variable('x', None) + ctx: Store + iter: + Name: [4, 0] - [4, 15] + variable: Variable('.0', None) + ctx: Load + body: [ + Expr: [4, 1] - [4, 3] + value: + YieldFrom: [4, 1] - [4, 3] + value: + Name: [4, 2] - [4, 3] + variable: Variable('x', None) + ctx: Load + ] + orelse: None + ] + iterable: + Name: [4, 13] - [4, 14] + variable: Variable('y', None) + ctx: Load + Expr: [7, 0] - [7, 15] + value: + SetComp: [7, 0] - [7, 15] + elt: None + generators: None + function: + Function: [7, 0] - [7, 15] + name: 'setcomp' + type_parameters: [] + args: [ + Name: [7, 0] - [7, 15] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [7, 0] - [7, 15] + target: + Name: [7, 8] - [7, 9] + variable: Variable('x', None) + ctx: Store + iter: + Name: [7, 0] - [7, 15] + variable: Variable('.0', None) + ctx: Load + body: [ + Expr: [7, 1] - [7, 3] + value: + YieldFrom: [7, 1] - [7, 3] + value: + Name: [7, 2] - [7, 3] + variable: Variable('x', None) + ctx: Load + ] + orelse: None + ] + iterable: + Name: [7, 13] - [7, 14] + variable: Variable('y', None) + ctx: Load + Expr: [10, 0] - [10, 20] + value: + DictComp: [10, 0] - [10, 20] + key: None + value: None + generators: None + function: + Function: [10, 0] - [10, 20] + name: 'dictcomp' + type_parameters: [] + args: [ + Name: [10, 0] - [10, 20] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [10, 0] - [10, 20] + target: + Name: [10, 9] - [10, 10] + variable: Variable('d', None) + ctx: Store + iter: + Name: [10, 0] - [10, 20] + variable: Variable('.0', None) + ctx: Load + body: [ + Expr: [10, 1] - [10, 4] + value: + YieldFrom: [10, 1] - [10, 4] + value: + Call: [10, 3] - [10, 4] + func: + Attribute: [10, 3] - [10, 4] + value: + Name: [10, 3] - [10, 4] + variable: Variable('d', None) + ctx: Load + attr: 'items' + ctx: Load + positional_args: [] + named_args: [] + ] + orelse: None + ] + iterable: + Name: [10, 14] - [10, 19] + variable: Variable('dicts', None) + ctx: Load + Expr: [13, 0] - [13, 15] + value: + GeneratorExp: [13, 1] - [13, 14] + elt: None + generators: None + function: + Function: [13, 1] - [13, 14] + name: 'genexpr' + type_parameters: [] + args: [ + Name: [13, 1] - [13, 14] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [13, 1] - [13, 14] + target: + Name: [13, 8] - [13, 9] + variable: Variable('x', None) + ctx: Store + iter: + Name: [13, 1] - [13, 14] + variable: Variable('.0', None) + ctx: Load + body: [ + Expr: [13, 1] - [13, 3] + value: + YieldFrom: [13, 1] - [13, 3] + value: + Name: [13, 2] - [13, 3] + variable: Variable('x', None) + ctx: Load + ] + orelse: None + ] + iterable: + Name: [13, 13] - [13, 14] + variable: Variable('y', None) + ctx: Load + parenthesised: True + Expr: [16, 0] - [16, 20] + value: + ListComp: [16, 0] - [16, 20] + elt: None + generators: None + function: + Function: [16, 0] - [16, 20] + name: 'listcomp' + type_parameters: [] + args: [ + Name: [16, 0] - [16, 20] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [16, 0] - [16, 20] + target: + Name: [16, 8] - [16, 9] + variable: Variable('x', None) + ctx: Store + iter: + Name: [16, 0] - [16, 20] + variable: Variable('.0', None) + ctx: Load + body: [ + If: [16, 18] - [16, 19] + test: + Name: [16, 18] - [16, 19] + variable: Variable('x', None) + ctx: Load + body: [ + Expr: [16, 1] - [16, 3] + value: + YieldFrom: [16, 1] - [16, 3] + value: + Name: [16, 2] - [16, 3] + variable: Variable('x', None) + ctx: Load + ] + orelse: None + ] + orelse: None + ] + iterable: + Name: [16, 13] - [16, 14] + variable: Variable('y', None) + ctx: Load + Expr: [19, 0] - [19, 26] + value: + ListComp: [19, 0] - [19, 26] + elt: None + generators: None + function: + Function: [19, 0] - [19, 26] + name: 'listcomp' + type_parameters: [] + args: [ + Name: [19, 0] - [19, 26] + variable: Variable('.0', None) + ctx: Param + ] + vararg: None + kwonlyargs: None + kwarg: None + body: [ + For: [19, 0] - [19, 26] + target: + Name: [19, 8] - [19, 9] + variable: Variable('y', None) + ctx: Store + iter: + Name: [19, 0] - [19, 26] + variable: Variable('.0', None) + ctx: Load + body: [ + For: [19, 0] - [19, 26] + target: + Name: [19, 19] - [19, 20] + variable: Variable('x', None) + ctx: Store + iter: + Name: [19, 24] - [19, 25] + variable: Variable('y', None) + ctx: Load + body: [ + Expr: [19, 1] - [19, 3] + value: + YieldFrom: [19, 1] - [19, 3] + value: + Name: [19, 2] - [19, 3] + variable: Variable('x', None) + ctx: Load + ] + orelse: None + ] + orelse: None + ] + iterable: + Name: [19, 13] - [19, 14] + variable: Variable('z', None) + ctx: Load + ] diff --git a/python/extractor/tests/parser/unpacking_in_comprehensions_new.py b/python/extractor/tests/parser/unpacking_in_comprehensions_new.py new file mode 100644 index 000000000000..024e0fe1ceae --- /dev/null +++ b/python/extractor/tests/parser/unpacking_in_comprehensions_new.py @@ -0,0 +1,19 @@ +# PEP 798: Unpacking in comprehensions + +# Star unpacking in list comprehension +[*x for x in y] + +# Star unpacking in set comprehension +{*x for x in y} + +# Double-star unpacking in dict comprehension +{**d for d in dicts} + +# Star unpacking in generator expression +(*x for x in y) + +# With conditions +[*x for x in y if x] + +# Multiple for clauses +[*x for y in z for x in y] From de900fc3b5b72edaa9af96f3353929c69d16b86a Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 16:09:18 +0000 Subject: [PATCH 6/8] Python: Add QL test for comprehensions with unpacking --- .../unpacking-comprehensions/test.expected | 4 ++++ .../extractor-tests/unpacking-comprehensions/test.py | 12 ++++++++++++ .../extractor-tests/unpacking-comprehensions/test.ql | 12 ++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 python/ql/test/3/extractor-tests/unpacking-comprehensions/test.expected create mode 100644 python/ql/test/3/extractor-tests/unpacking-comprehensions/test.py create mode 100644 python/ql/test/3/extractor-tests/unpacking-comprehensions/test.ql diff --git a/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.expected b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.expected new file mode 100644 index 000000000000..ec8cc352df4f --- /dev/null +++ b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.expected @@ -0,0 +1,4 @@ +| 3 | ListComp | +| 5 | SetComp | +| 7 | DictComp | +| 9 | GeneratorExp | diff --git a/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.py b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.py new file mode 100644 index 000000000000..44c8b1ec0baa --- /dev/null +++ b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.py @@ -0,0 +1,12 @@ +# PEP 798: Unpacking in comprehensions + +flat_list = [*x for x in nested] + +flat_set = {*x for x in nested} + +merged = {**d for d in dicts} + +gen = (*x for x in nested) + +# Force the new parser (the old parser cannot handle lazy imports) +lazy import _pep798_parser_hint diff --git a/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.ql b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.ql new file mode 100644 index 000000000000..23c08f720ff9 --- /dev/null +++ b/python/ql/test/3/extractor-tests/unpacking-comprehensions/test.ql @@ -0,0 +1,12 @@ +import python + +from Expr e +where + e.getLocation().getFile().getShortName() = "test.py" and + ( + e instanceof ListComp or + e instanceof SetComp or + e instanceof DictComp or + e instanceof GeneratorExp + ) +select e.getLocation().getStartLine(), e.toString() From 15790aa00cc8241416630e1fbe378343b1241aea Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 16:12:15 +0000 Subject: [PATCH 7/8] Python: Add change note --- .../2026-04-10-support-comprehension-unpacking.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 python/ql/lib/change-notes/2026-04-10-support-comprehension-unpacking.md diff --git a/python/ql/lib/change-notes/2026-04-10-support-comprehension-unpacking.md b/python/ql/lib/change-notes/2026-04-10-support-comprehension-unpacking.md new file mode 100644 index 000000000000..d7406d0a606c --- /dev/null +++ b/python/ql/lib/change-notes/2026-04-10-support-comprehension-unpacking.md @@ -0,0 +1,5 @@ +--- +category: minorAnalysis +--- + +- The Python extractor now supports unpacking in comprehensions, e.g. `[*x for x in nested]` (as defined in [PEP-798](https://peps.python.org/pep-0798/)) that will be part of Python 3.15. From 8b1ecf05c950eb68f1b0eea314bac25fb88ddc79 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 10 Apr 2026 20:43:42 +0000 Subject: [PATCH 8/8] Python: Update test output This change reflects the `(value, key)` to `(key, value)` fix in an earlier commit. --- python/ql/test/library-tests/comprehensions/Flow.expected | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/ql/test/library-tests/comprehensions/Flow.expected b/python/ql/test/library-tests/comprehensions/Flow.expected index efcf64bfb9f5..8262e3e04683 100644 --- a/python/ql/test/library-tests/comprehensions/Flow.expected +++ b/python/ql/test/library-tests/comprehensions/Flow.expected @@ -36,13 +36,13 @@ | 11 | ControlFlowNode for For | 11 | Exit node for Function dictcomp | | 11 | ControlFlowNode for For | 13 | ControlFlowNode for Tuple | | 11 | Entry node for Function dictcomp | 11 | ControlFlowNode for .0 | -| 12 | ControlFlowNode for Attribute | 12 | ControlFlowNode for Tuple | +| 12 | ControlFlowNode for Attribute | 12 | ControlFlowNode for z | | 12 | ControlFlowNode for Tuple | 12 | ControlFlowNode for Yield | | 12 | ControlFlowNode for Yield | 11 | ControlFlowNode for For | | 12 | ControlFlowNode for y | 12 | ControlFlowNode for Attribute | | 12 | ControlFlowNode for z | 12 | ControlFlowNode for z() | -| 12 | ControlFlowNode for z() | 12 | ControlFlowNode for y | +| 12 | ControlFlowNode for z() | 12 | ControlFlowNode for Tuple | | 13 | ControlFlowNode for Tuple | 13 | ControlFlowNode for y | | 13 | ControlFlowNode for y | 13 | ControlFlowNode for z | -| 13 | ControlFlowNode for z | 12 | ControlFlowNode for z | +| 13 | ControlFlowNode for z | 12 | ControlFlowNode for y | | 14 | ControlFlowNode for mapping | 11 | ControlFlowNode for DictComp |